tStyle change in includes order - surf - customized build of surf, the suckless webkit browser
(HTM) git clone git://src.adamsgaard.dk/surf
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit bc46e954f2b1298fc6312e6a4bc8ed63b3051ac3
(DIR) parent 432f3c6b53cf47db3141a3e9b8b5aec2152f9aae
(HTM) Author: Quentin Rameau <quinq@fifth.space>
Date: Sat, 21 Nov 2015 19:22:11 +0100
Style change in includes order
Diffstat:
M surf.c | 36 ++++++++++++++++----------------
1 file changed, 18 insertions(+), 18 deletions(-)
---
(DIR) diff --git a/surf.c b/surf.c
t@@ -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"