Manually sort some includes in src/gromacs
[alexxy/gromacs.git] / src / gromacs / random / random.c
index 4004db7ad51f15c48726f303173f9fdb4d062e05..9150e64f3eb12f7425d02e5f09c05e7cf6f58838 100644 (file)
  */
 #include "gmxpre.h"
 
-#include "config.h"
-
 #include "random.h"
 
+#include <math.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <time.h>
+
+#include "config.h"
+
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
-#include <time.h>
-#include <math.h>
 #ifdef GMX_NATIVE_WINDOWS
 #include <process.h>
 #endif
 
-#include "external/Random123-1.08/include/Random123/threefry.h"
-
 #include "gromacs/math/utilities.h"
-#include "random_gausstable.h"
+#include "gromacs/random/random_gausstable.h"
+
+#include "external/Random123-1.08/include/Random123/threefry.h"
 
 #define RNG_N 624
 #define RNG_M 397