Include stddef.h so that we use the system's definition of NULL. (#54730)

Sun Aug  5 08:25:30 2001  Owen Taylor  <otaylor@redhat.com>

	* glib/gmacros.h: Include stddef.h so that we use
	the system's definition of NULL. (#54730)
This commit is contained in:
Owen Taylor 2001-08-05 12:37:37 +00:00 committed by Owen Taylor
parent 3339995d87
commit f94802c299
9 changed files with 44 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Sun Aug 5 08:25:30 2001 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Include stddef.h so that we use
the system's definition of NULL. (#54730)
2001-08-04 Alexander Larsson <alexl@redhat.com>
* win32-fixup.pl:

View File

@ -1,3 +1,8 @@
Sun Aug 5 08:25:30 2001 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Include stddef.h so that we use
the system's definition of NULL. (#54730)
2001-08-04 Alexander Larsson <alexl@redhat.com>
* win32-fixup.pl:

View File

@ -1,3 +1,8 @@
Sun Aug 5 08:25:30 2001 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Include stddef.h so that we use
the system's definition of NULL. (#54730)
2001-08-04 Alexander Larsson <alexl@redhat.com>
* win32-fixup.pl:

View File

@ -1,3 +1,8 @@
Sun Aug 5 08:25:30 2001 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Include stddef.h so that we use
the system's definition of NULL. (#54730)
2001-08-04 Alexander Larsson <alexl@redhat.com>
* win32-fixup.pl:

View File

@ -1,3 +1,8 @@
Sun Aug 5 08:25:30 2001 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Include stddef.h so that we use
the system's definition of NULL. (#54730)
2001-08-04 Alexander Larsson <alexl@redhat.com>
* win32-fixup.pl:

View File

@ -1,3 +1,8 @@
Sun Aug 5 08:25:30 2001 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Include stddef.h so that we use
the system's definition of NULL. (#54730)
2001-08-04 Alexander Larsson <alexl@redhat.com>
* win32-fixup.pl:

View File

@ -1,3 +1,8 @@
Sun Aug 5 08:25:30 2001 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Include stddef.h so that we use
the system's definition of NULL. (#54730)
2001-08-04 Alexander Larsson <alexl@redhat.com>
* win32-fixup.pl:

View File

@ -1,3 +1,8 @@
Sun Aug 5 08:25:30 2001 Owen Taylor <otaylor@redhat.com>
* glib/gmacros.h: Include stddef.h so that we use
the system's definition of NULL. (#54730)
2001-08-04 Alexander Larsson <alexl@redhat.com>
* win32-fixup.pl:

View File

@ -31,6 +31,10 @@
#ifndef __G_MACROS_H__
#define __G_MACROS_H__
/* We include stddef.h to get the system's definition of NULL
*/
#include <stddef.h>
/* Here we provide G_GNUC_EXTENSION as an alias for __extension__,
* where this is valid. This allows for warningless compilation of
* "long long" types even in the presence of '-ansi -pedantic'.