mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-09 19:06:15 +01:00
Fix an include order problem
svn path=/trunk/; revision=7936
This commit is contained in:
parent
0712b73358
commit
90c9ab3178
@ -1,3 +1,10 @@
|
||||
2009-03-01 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Bug 71704 - Header file include order
|
||||
|
||||
* gmodule.c: Include gmodule.h before io.h.
|
||||
Pointed out by Kazuki Iwamoto
|
||||
|
||||
2009-02-17 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.19.8 ===
|
||||
|
@ -31,6 +31,7 @@
|
||||
#include "config.h"
|
||||
|
||||
#include "glib.h"
|
||||
#include "gmodule.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
@ -46,7 +47,6 @@
|
||||
|
||||
#include "gmoduleconf.h"
|
||||
#include "gstdio.h"
|
||||
#include "gmodule.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
|
||||
|
Loading…
Reference in New Issue
Block a user