Sort all includes in src/gromacs
[alexxy/gromacs.git] / src / gromacs / gmxana / dens_filter.c
index 585422bde3626d1b9389954ddc4129349bfd44b1..bd08b5247a0b1b43d76416a7c22ea2d6dad709c7 100644 (file)
  * the research papers on the package. Check out http://www.gromacs.org.
  */
 
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "gmxpre.h"
+
 /* dens_filter.c
  * Routines for Filters and convolutions
  */
 
-#include <math.h>
-#include "typedefs.h"
 #include "dens_filter.h"
+
+#include <math.h>
+
+#include "gromacs/legacyheaders/typedefs.h"
+#include "gromacs/math/vec.h"
 #include "gromacs/utility/smalloc.h"
-#include "vec.h"
 
 #ifdef GMX_DOUBLE
 #define EXP(x) (exp(x))