2007-11-08 Matthias Clasen <mclasen@redhat.com>
* gmodule.c: Include glibconfig.h before checking G_OS_WIN32.
svn path=/trunk/; revision=5832
+2007-11-08 Matthias Clasen <mclasen@redhat.com>
+
+ * gmodule.c: Include glibconfig.h before checking G_OS_WIN32.
+
2007-11-07 Matthias Clasen <mclasen@redhat.com>
* *.c: Make header include order consistent (#71704,
*/
#include "config.h"
+#include "glibconfig.h"
#include <errno.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
-#if defined (G_OS_WIN32)
+#ifdef G_OS_WIN32
#include <io.h> /* For open() and close() prototypes. */
#endif