Move string.h include into the .c file instead of where it was in the .h
authorOwen Taylor <otaylor@redhat.com>
Mon, 10 Jul 2000 01:28:03 +0000 (01:28 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Mon, 10 Jul 2000 01:28:03 +0000 (01:28 +0000)
Sun Jul  9 21:21:46 2000  Owen Taylor  <otaylor@redhat.com>

* genums.[ch]: Move string.h include into the .c file
instead of where it was in the .h file by mistake.

Sun Jul  9 21:20:45 2000  Owen Taylor  <otaylor@redhat.com>

* gunicode.h: Include stddef.h instead of stdlib.h

13 files changed:
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/gunicode.h
gobject/ChangeLog
gobject/genums.c
gobject/genums.h
gunicode.h

index 5b506be..a75eb2d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Jul  9 21:20:45 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gunicode.h: Include stddef.h instead of stdlib.h
+
 2000-07-08  Tor Lillqvist  <tml@iki.fi>
 
        * glib.h (GLIB_VAR): Rename the GUTILS_C_VAR macro to GLIB_VAR.
index 5b506be..a75eb2d 100644 (file)
@@ -1,3 +1,7 @@
+Sun Jul  9 21:20:45 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gunicode.h: Include stddef.h instead of stdlib.h
+
 2000-07-08  Tor Lillqvist  <tml@iki.fi>
 
        * glib.h (GLIB_VAR): Rename the GUTILS_C_VAR macro to GLIB_VAR.
index 5b506be..a75eb2d 100644 (file)
@@ -1,3 +1,7 @@
+Sun Jul  9 21:20:45 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gunicode.h: Include stddef.h instead of stdlib.h
+
 2000-07-08  Tor Lillqvist  <tml@iki.fi>
 
        * glib.h (GLIB_VAR): Rename the GUTILS_C_VAR macro to GLIB_VAR.
index 5b506be..a75eb2d 100644 (file)
@@ -1,3 +1,7 @@
+Sun Jul  9 21:20:45 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gunicode.h: Include stddef.h instead of stdlib.h
+
 2000-07-08  Tor Lillqvist  <tml@iki.fi>
 
        * glib.h (GLIB_VAR): Rename the GUTILS_C_VAR macro to GLIB_VAR.
index 5b506be..a75eb2d 100644 (file)
@@ -1,3 +1,7 @@
+Sun Jul  9 21:20:45 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gunicode.h: Include stddef.h instead of stdlib.h
+
 2000-07-08  Tor Lillqvist  <tml@iki.fi>
 
        * glib.h (GLIB_VAR): Rename the GUTILS_C_VAR macro to GLIB_VAR.
index 5b506be..a75eb2d 100644 (file)
@@ -1,3 +1,7 @@
+Sun Jul  9 21:20:45 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gunicode.h: Include stddef.h instead of stdlib.h
+
 2000-07-08  Tor Lillqvist  <tml@iki.fi>
 
        * glib.h (GLIB_VAR): Rename the GUTILS_C_VAR macro to GLIB_VAR.
index 5b506be..a75eb2d 100644 (file)
@@ -1,3 +1,7 @@
+Sun Jul  9 21:20:45 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gunicode.h: Include stddef.h instead of stdlib.h
+
 2000-07-08  Tor Lillqvist  <tml@iki.fi>
 
        * glib.h (GLIB_VAR): Rename the GUTILS_C_VAR macro to GLIB_VAR.
index 5b506be..a75eb2d 100644 (file)
@@ -1,3 +1,7 @@
+Sun Jul  9 21:20:45 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gunicode.h: Include stddef.h instead of stdlib.h
+
 2000-07-08  Tor Lillqvist  <tml@iki.fi>
 
        * glib.h (GLIB_VAR): Rename the GUTILS_C_VAR macro to GLIB_VAR.
index f40078d..b40cb53 100644 (file)
@@ -22,7 +22,7 @@
 #ifndef __GUNICODE_H__
 #define __GUNICODE_H__
 
-#include <stdlib.h>      /* For size_t */
+#include <stddef.h>      /* For size_t */
 
 #ifdef __cplusplus
 extern "C"
index edda859..f933ee5 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jul  9 21:21:46 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * genums.c: Move string.h include into the .c file
+       instead of where it was in the .h file by mistake.
+
 Thu Jul  6 15:30:27 2000  Owen Taylor  <otaylor@redhat.com>
 
        * Makefile.am (EXTRA_DIST): dist fixes.
index ef5e41a..f18db25 100644 (file)
@@ -16,6 +16,9 @@
  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  * Boston, MA 02111-1307, USA.
  */
+
+#include        <string.h>
+
 #include       "genums.h"
 
 #include       "gvalue.h"
index 13f519c..f04b7d6 100644 (file)
@@ -19,8 +19,6 @@
 #ifndef __G_ENUMS_H__
 #define __G_ENUMS_H__
 
-#include <string.h>
-
 #include <gobject/gtype.h>
 
 
index f40078d..b40cb53 100644 (file)
@@ -22,7 +22,7 @@
 #ifndef __GUNICODE_H__
 #define __GUNICODE_H__
 
-#include <stdlib.h>      /* For size_t */
+#include <stddef.h>      /* For size_t */
 
 #ifdef __cplusplus
 extern "C"