mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-09 18:54:04 +02:00
Improvde #include order consistency
This was mostly fixed already, just re-fix a few details here. https://bugzilla.gnome.org/show_bug.cgi?id=71704
This commit is contained in:
@@ -19,10 +19,10 @@
|
|||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#include "gatomicarray.h"
|
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "gatomicarray.h"
|
||||||
|
|
||||||
/* A GAtomicArray is a growable, mutable array of data
|
/* A GAtomicArray is a growable, mutable array of data
|
||||||
* generally of the form of a header of a specific size and
|
* generally of the form of a header of a specific size and
|
||||||
* then a array of items of a fixed size.
|
* then a array of items of a fixed size.
|
||||||
|
@@ -28,6 +28,11 @@
|
|||||||
#endif
|
#endif
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
||||||
|
#ifdef G_OS_WIN32
|
||||||
|
#include <io.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <glib/gstdio.h>
|
#include <glib/gstdio.h>
|
||||||
|
|
||||||
#undef G_LOG_DOMAIN
|
#undef G_LOG_DOMAIN
|
||||||
@@ -35,10 +40,6 @@
|
|||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
#include <glib/gprintf.h>
|
#include <glib/gprintf.h>
|
||||||
|
|
||||||
#ifdef G_OS_WIN32
|
|
||||||
#include <io.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* --- defines --- */
|
/* --- defines --- */
|
||||||
#define PRG_NAME "glib-genmarshal"
|
#define PRG_NAME "glib-genmarshal"
|
||||||
#define PKG_NAME "GLib"
|
#define PKG_NAME "GLib"
|
||||||
|
@@ -33,7 +33,7 @@
|
|||||||
#include "gatomicarray.h"
|
#include "gatomicarray.h"
|
||||||
#include "gobject_trace.h"
|
#include "gobject_trace.h"
|
||||||
|
|
||||||
#include "../glib/gconstructor.h"
|
#include "gconstructor.h"
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user