Sort #includes a bit better, and don't include platform-specific
headers in gio.h.
This commit is contained in:
Matthias Clasen
2010-05-14 08:38:07 -04:00
parent 0540798991
commit 1d22b64843
11 changed files with 42 additions and 44 deletions

View File

@@ -23,6 +23,12 @@
#include "config.h"
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "gdbusutils.h"
#include "gdbusmessage.h"
@@ -39,11 +45,6 @@
#ifdef G_OS_UNIX
#include "gunixfdlist.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
#endif
#include "glibintl.h"