Make header include order consistent (#71704, Diego Escalante Urrelo)

2007-11-07  Matthias Clasen <mclasen@redhat.com>

        * *.c: Make header include order consistent (#71704,
        Diego Escalante Urrelo)


svn path=/trunk/; revision=5817
This commit is contained in:
Matthias Clasen 2007-11-08 03:43:46 +00:00 committed by Matthias Clasen
parent 589bd2f463
commit 9757456e23
9 changed files with 18 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2007-11-07 Matthias Clasen <mclasen@redhat.com>
* *.c: Make header include order consistent (#71704,
Diego Escalante Urrelo)
2007-11-07 Matthias Clasen <mclasen@redhat.com> 2007-11-07 Matthias Clasen <mclasen@redhat.com>
* === Released 2.14.3 === * === Released 2.14.3 ===

View File

@ -24,6 +24,9 @@
/* because we are compatible with archive format only since AIX 4.3 */ /* because we are compatible with archive format only since AIX 4.3 */
#define __AR_BIG__ #define __AR_BIG__
#include "config.h"
#include <ar.h> #include <ar.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -23,6 +23,7 @@
/* /*
* MT safe * MT safe
*/ */
#include "config.h"
#include <be/kernel/image.h> /* image (aka DSO) handling functions... */ #include <be/kernel/image.h> /* image (aka DSO) handling functions... */

View File

@ -27,6 +27,7 @@
/* /*
* MT safe * MT safe
*/ */
#include "config.h"
#include <dlfcn.h> #include <dlfcn.h>

View File

@ -27,6 +27,7 @@
/* /*
* MT safe * MT safe
*/ */
#include "config.h"
#include <dl.h> #include <dl.h>

View File

@ -19,6 +19,7 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#include "config.h"
#include <mach-o/dyld.h> #include <mach-o/dyld.h>

View File

@ -27,6 +27,7 @@
/* /*
* MT safe * MT safe
*/ */
#include "config.h"
#include <dlfcn.h> #include <dlfcn.h>

View File

@ -30,6 +30,7 @@
/* /*
* MT safe * MT safe
*/ */
#include "config.h"
#include <stdio.h> #include <stdio.h>
#include <windows.h> #include <windows.h>

View File

@ -28,10 +28,7 @@
* MT safe * MT safe
*/ */
#include <config.h> #include "config.h"
#include "gmoduleconf.h"
#include "gstdio.h"
#include "gmodule.h"
#include <errno.h> #include <errno.h>
#include <string.h> #include <string.h>
@ -45,6 +42,9 @@
#include <io.h> /* For open() and close() prototypes. */ #include <io.h> /* For open() and close() prototypes. */
#endif #endif
#include "gmoduleconf.h"
#include "gstdio.h"
#include "gmodule.h"
/* We maintain a list of modules, so we can reference count them. /* We maintain a list of modules, so we can reference count them.
* That's needed because some platforms don't support refernce counts on * That's needed because some platforms don't support refernce counts on