move G_OS_WIN32 inclusion of <io.h> down to where G_OS_WIN32 will be
authorHans Breuer <hans@breuer.org>
Fri, 27 Jun 2008 09:59:30 +0000 (09:59 +0000)
committerHans Breuer <hans@src.gnome.org>
Fri, 27 Jun 2008 09:59:30 +0000 (09:59 +0000)
2008-06-27  Hans Breuer  <hans@breuer.org>

* glib-genmarshal.c : move G_OS_WIN32 inclusion of <io.h> down to
where G_OS_WIN32 will be defined (#540047, Kazuki IWAMOTO)

svn path=/trunk/; revision=7100

gobject/ChangeLog
gobject/glib-genmarshal.c

index 370f7a6..b91e2e9 100644 (file)
@@ -1,3 +1,8 @@
+2008-06-27  Hans Breuer  <hans@breuer.org>
+
+       * glib-genmarshal.c : move G_OS_WIN32 inclusion of <io.h> down to
+       where G_OS_WIN32 will be defined (#540047, Kazuki IWAMOTO)
+
 2008-06-22  Michael Natterer  <mitch@imendio.com>
 
        * *.c: remove trailing whitespace from newly added gtk-doc
index 4de9932..26b55d3 100644 (file)
 #include <sys/types.h>
 #include <sys/stat.h>
 
-#ifdef G_OS_WIN32
-#include <io.h>
-#endif
-
 #undef G_LOG_DOMAIN
 #define G_LOG_DOMAIN "GLib-Genmarshal"
 #include <glib.h>
 #include <glib/gprintf.h>
 
+#ifdef G_OS_WIN32
+#include <io.h>
+#endif
 
 /* --- defines --- */
 #define        PRG_NAME        "glib-genmarshal"