1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-03-11 02:13:36 +01:00

Clean up includes.

2006-12-28  Matthias Clasen  <mclasen@redhat.com>

        * gmodule.c: Clean up includes.
This commit is contained in:
Matthias Clasen 2006-12-28 05:02:30 +00:00 committed by Matthias Clasen
parent 98d552e0cd
commit 08e5183b36
2 changed files with 20 additions and 16 deletions

@ -1,3 +1,7 @@
2006-12-28 Matthias Clasen <mclasen@redhat.com>
* gmodule.c: Clean up includes.
2006-12-13 Matthias Clasen <mclasen@redhat.com>
* gmodule.c (g_module_open):

@ -28,24 +28,24 @@
* MT safe
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "gstdio.h"
#include "gmodule.h"
#include "gmoduleconf.h"
#include <config.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#include <unistd.h>
#endif
#if defined (G_OS_WIN32)
# include <io.h> /* For open() and close() prototypes. */
#include <io.h> /* 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