Remove unnecessary config.h includes
[alexxy/gromacs.git] / src / gromacs / gmxana / dens_filter.c
index 585422bde3626d1b9389954ddc4129349bfd44b1..0bf0bfc7d2959bfca99098b5dba2afd0d65bcef8 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 "gromacs/legacyheaders/typedefs.h"
 #include "dens_filter.h"
 #include "gromacs/utility/smalloc.h"
-#include "vec.h"
+#include "gromacs/math/vec.h"
 
 #ifdef GMX_DOUBLE
 #define EXP(x) (exp(x))