Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(803)

Unified Diff: src/platform-freebsd.cc

Issue 333013002: Check alpha-sorting of includes during presubmit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/platform-cygwin.cc ('k') | src/platform-linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « src/platform-cygwin.cc ('k') | src/platform-linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698