summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2015-11-21 19:22:11 +0100
committerQuentin Rameau <quinq@fifth.space>2015-11-21 19:22:11 +0100
commitbc46e954f2b1298fc6312e6a4bc8ed63b3051ac3 (patch)
treea57e7ffb198b5aa841fb362f12c0feb937711646
parent432f3c6b53cf47db3141a3e9b8b5aec2152f9aae (diff)
downloadsurf-bc46e954f2b1298fc6312e6a4bc8ed63b3051ac3.tar.gz
surf-bc46e954f2b1298fc6312e6a4bc8ed63b3051ac3.tar.bz2
surf-bc46e954f2b1298fc6312e6a4bc8ed63b3051ac3.zip
Style change in includes order
-rw-r--r--surf.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/surf.c b/surf.c
index 5a74941..9c9bae7 100644
--- a/surf.c
+++ b/surf.c
@@ -2,30 +2,30 @@
*
* To understand surf, start reading main().
*/
-#include <signal.h>
-#include <X11/X.h>
-#include <X11/Xatom.h>
-#include <gtk/gtkx.h>
-#include <gtk/gtk.h>
-#include <gdk/gdkx.h>
-#include <gdk/gdk.h>
-#include <gdk/gdkkeysyms.h>
-#include <string.h>
+#include <sys/file.h>
#include <sys/types.h>
#include <sys/wait.h>
-#include <unistd.h>
+#include <libgen.h>
#include <limits.h>
-#include <stdlib.h>
+#include <pwd.h>
+#include <regex.h>
+#include <signal.h>
+#include <stdarg.h>
#include <stdio.h>
-#include <webkit2/webkit2.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+
+#include <gdk/gdk.h>
+#include <gdk/gdkkeysyms.h>
+#include <gdk/gdkx.h>
#include <glib/gstdio.h>
+#include <gtk/gtk.h>
+#include <gtk/gtkx.h>
#include <JavaScriptCore/JavaScript.h>
-#include <sys/file.h>
-#include <libgen.h>
-#include <stdarg.h>
-#include <regex.h>
-#include <pwd.h>
-#include <string.h>
+#include <webkit2/webkit2.h>
+#include <X11/X.h>
+#include <X11/Xatom.h>
#include "arg.h"