diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-24 13:13:25 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-24 13:13:25 +0200 |
commit | aa917d568fa51597f94b6029bed460a839103a8a (patch) | |
tree | 468dcf523c03ec7654c3cbc9abb1d938d5d75ff5 /src/common/dcc.c | |
parent | bdbb3d14bd439982aa85f3956b69d04d52ec079b (diff) |
System includes before own includes
Diffstat (limited to 'src/common/dcc.c')
-rw-r--r-- | src/common/dcc.c | 5 |
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 |