Remove unnecessary config.h includes
[alexxy/gromacs.git] / src / gromacs / gmxana / autocorr.c
index 3b43b518ea854e083bf1444ccfda7a2bfbdb47ba..5e829a986d6d8884cf267c5869847dcbd80dd91d 100644 (file)
  * To help us fund GROMACS development, we humbly ask that you cite
  * the research papers on the package. Check out http://www.gromacs.org.
  */
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "gmxpre.h"
 
-#include <stdio.h>
 #include <math.h>
-#include "macros.h"
-#include "typedefs.h"
-#include "physics.h"
-#include "smalloc.h"
-#include "xvgr.h"
-#include "gromacs/fileio/futil.h"
+#include <stdio.h>
+#include <string.h>
+
+#include "gromacs/legacyheaders/macros.h"
+#include "gromacs/legacyheaders/typedefs.h"
+#include "gromacs/utility/smalloc.h"
+#include "gromacs/fileio/xvgr.h"
+#include "gromacs/utility/futil.h"
 #include "gstat.h"
-#include "names.h"
-#include "gmx_fatal.h"
-#include "vec.h"
-#include "string2.h"
+#include "gromacs/legacyheaders/names.h"
+#include "gromacs/utility/fatalerror.h"
+#include "gromacs/math/vec.h"
 #include "correl.h"
 
 #define MODE(x) ((mode & (x)) == (x))