Include config.h first

This commit is contained in:
Matthias Clasen 2006-01-08 23:21:01 +00:00
parent 82395be214
commit 0f3dfbfc86
4 changed files with 18 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-01-08 Matthias Clasen <mclasen@redhat.com>
* glib/gslice.c: Include config.h first, pointed out
by Bogdan Nicula.
2005-12-20 Sven Herzberg <herzi@gnome-de.org>
* docs/reference/gobject/tmpl/gtype.sgml: explain that

View File

@ -1,3 +1,8 @@
2006-01-08 Matthias Clasen <mclasen@redhat.com>
* glib/gslice.c: Include config.h first, pointed out
by Bogdan Nicula.
2005-12-20 Sven Herzberg <herzi@gnome-de.org>
* docs/reference/gobject/tmpl/gtype.sgml: explain that

View File

@ -1,3 +1,8 @@
2006-01-08 Matthias Clasen <mclasen@redhat.com>
* glib/gslice.c: Include config.h first, pointed out
by Bogdan Nicula.
2005-12-20 Sven Herzberg <herzi@gnome-de.org>
* docs/reference/gobject/tmpl/gtype.sgml: explain that

View File

@ -17,13 +17,15 @@
* Boston, MA 02111-1307, USA.
*/
/* MT safe */
#include "config.h"
#ifdef HAVE_POSIX_MEMALIGN
#define _XOPEN_SOURCE 600 /* posix_memalign() */
#endif
#include <stdlib.h> /* posix_memalign() */
#include <string.h>
#include <errno.h>
#include "config.h"
#include "gmem.h" /* gslice.h */
#include "gthreadinit.h"
#include "galias.h"