summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-10-24 13:13:25 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-10-24 13:13:25 +0200
commitaa917d568fa51597f94b6029bed460a839103a8a (patch)
tree468dcf523c03ec7654c3cbc9abb1d938d5d75ff5
parentbdbb3d14bd439982aa85f3956b69d04d52ec079b (diff)
System includes before own includes
-rw-r--r--src/common/dcc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/dcc.c b/src/common/dcc.c
index 4e0f5ee9..77ef2903 100644
--- a/src/common/dcc.c
+++ b/src/common/dcc.c
@@ -45,6 +45,9 @@
 #include <unistd.h>
 #endif
 
+#include <glib.h>
+#include <glib/gstdio.h>
+
 #include "xchat.h"
 #include "util.h"
 #include "fe.h"
@@ -57,8 +60,6 @@
 #include "url.h"
 #include "xchatc.h"
 
-#include <glib/gstdio.h>
-
 #ifdef USE_DCC64
 #define BIG_STR_TO_INT(x) strtoull(x,NULL,10)
 #ifdef WIN32