From: Matthias Clasen Date: Thu, 28 Dec 2006 05:02:30 +0000 (+0000) Subject: Clean up includes. X-Git-Tag: GLIB_2_13_0~137 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=08e5183b36d184ce131bc6a9c70ac7d7698bc8dd;p=platform%2Fupstream%2Fglib.git Clean up includes. 2006-12-28 Matthias Clasen * gmodule.c: Clean up includes. --- diff --git a/gmodule/ChangeLog b/gmodule/ChangeLog index 819cb23fd..fcfa4aec8 100644 --- a/gmodule/ChangeLog +++ b/gmodule/ChangeLog @@ -1,8 +1,12 @@ +2006-12-28 Matthias Clasen + + * gmodule.c: Clean up includes. + 2006-12-13 Matthias Clasen - * gmodule.c (g_module_open): - * gmodule-dl.c (_g_module_symbol): Handle valid symbols - that are NULL correctly. (#385388, Felix Kater) + * gmodule.c (g_module_open): + * gmodule-dl.c (_g_module_symbol): Handle valid symbols + that are NULL correctly. (#385388, Felix Kater) Mon Sep 11 14:58:56 2006 Tim Janik diff --git a/gmodule/gmodule.c b/gmodule/gmodule.c index 75c4e709b..65966a496 100644 --- a/gmodule/gmodule.c +++ b/gmodule/gmodule.c @@ -28,24 +28,24 @@ * MT safe */ -#ifdef HAVE_CONFIG_H -# include -#endif -#include "gstdio.h" -#include "gmodule.h" -#include "gmoduleconf.h" -#include -#include -#include -#include -#include +#include + +#include +#include +#include +#include +#include #ifdef HAVE_UNISTD_H -# include +#include #endif #if defined (G_OS_WIN32) -# include /* For open() and close() prototypes. */ +#include /* For open() and close() prototypes. */ #endif +#include "gstdio.h" +#include "gmodule.h" +#include "gmoduleconf.h" + /* We maintain a list of modules, so we can reference count them. * That's needed because some platforms don't support refernce counts on * modules e.g. the shl_* implementation of HP-UX