Include stddef.h so that we use the system's definition of NULL. (#54730)
authorOwen Taylor <otaylor@redhat.com>
Sun, 5 Aug 2001 12:37:37 +0000 (12:37 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Sun, 5 Aug 2001 12:37:37 +0000 (12:37 +0000)
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)

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gmacros.h

index 58ffb78..880c11d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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: 
index 58ffb78..880c11d 100644 (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: 
index 58ffb78..880c11d 100644 (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: 
index 58ffb78..880c11d 100644 (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: 
index 58ffb78..880c11d 100644 (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: 
index 58ffb78..880c11d 100644 (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: 
index 58ffb78..880c11d 100644 (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: 
index 58ffb78..880c11d 100644 (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: 
index 5f4055c..eacaa41 100644 (file)
 #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'.