Index: src/platform-freebsd.cc |
diff --git a/src/platform-freebsd.cc b/src/platform-freebsd.cc |
index a1a07396fb42da4b79328bd76644f517b3c9a566..d77b30f2454536c0d555c5dfcc0eab20d2a1714f 100644 |
--- a/src/platform-freebsd.cc |
+++ b/src/platform-freebsd.cc |
@@ -8,22 +8,22 @@ |
#include <pthread.h> |
#include <semaphore.h> |
#include <signal.h> |
-#include <sys/time.h> |
+#include <stdlib.h> |
#include <sys/resource.h> |
+#include <sys/time.h> |
#include <sys/types.h> |
#include <sys/ucontext.h> |
-#include <stdlib.h> |
-#include <sys/types.h> // mmap & munmap |
+#include <sys/fcntl.h> // open |
#include <sys/mman.h> // mmap & munmap |
#include <sys/stat.h> // open |
-#include <sys/fcntl.h> // open |
+#include <sys/types.h> // mmap & munmap |
#include <unistd.h> // getpagesize |
// If you don't have execinfo.h then you need devel/libexecinfo from ports. |
-#include <strings.h> // index |
#include <errno.h> |
-#include <stdarg.h> |
#include <limits.h> |
+#include <stdarg.h> |
+#include <strings.h> // index |
#undef MAP_TYPE |