Manually sort some includes in src/gromacs
[alexxy/gromacs.git] / src / gromacs / fft / fft_fftw3.cpp
index e9de7eb0d1fa0a59d7aaf031c53924bdf3cec9cd..d83d0f591b0604f7a8cdec3dc5a988eec0d9fce2 100644 (file)
  */
 #include "gmxpre.h"
 
-#include "config.h"
-
 #include <errno.h>
 #include <stdlib.h>
 
 #include <fftw3.h>
 
+#include "thread_mpi/mutex.h"
+
 #include "gromacs/fft/fft.h"
+#include "gromacs/utility/exceptions.h"
 #include "gromacs/utility/fatalerror.h"
 
+#include "config.h"
+
 #ifdef GMX_DOUBLE
 #define FFTWPREFIX(name) fftw_ ## name
 #else
 #define FFTWPREFIX(name) fftwf_ ## name
 #endif
 
-#include "thread_mpi/mutex.h"
-#include "gromacs/utility/exceptions.h"
-
 /* none of the fftw3 calls, except execute(), are thread-safe, so
    we need to serialize them with this mutex. */
 static tMPI::mutex big_fftw_mutex;