Sort all includes in src/gromacs
[alexxy/gromacs.git] / src / gromacs / random / random.c
index 724012e725e97717ccab4cc8176e65a760be4e64..b8295a73d72b2c1a387c7baa6a51b4ea5a6d1474 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.
  */
-#include "config.h"
+#include "gmxpre.h"
 
 #include "random.h"
 
+#include "config.h"
+
+#include <math.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <time.h>
+
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
-#include <time.h>
-#include <math.h>
 #ifdef GMX_NATIVE_WINDOWS
 #include <process.h>
 #endif
@@ -52,7 +55,7 @@
 #include "external/Random123-1.08/include/Random123/threefry.h"
 
 #include "gromacs/math/utilities.h"
-#include "random_gausstable.h"
+#include "gromacs/random/random_gausstable.h"
 
 #define RNG_N 624
 #define RNG_M 397