summaryrefslogtreecommitdiff
path: root/gobject
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2000-07-10 01:28:03 +0000
committerOwen Taylor <otaylor@src.gnome.org>2000-07-10 01:28:03 +0000
commit04bc211e6c4bba97d698268a62706681b8ab2bf7 (patch)
tree4d76b8df10676c4776c5f22d840640757515e3f6 /gobject
parent39732afc59b5e3db38467b047090b0d72040255f (diff)
downloadglib-04bc211e6c4bba97d698268a62706681b8ab2bf7.tar.gz
Move string.h include into the .c file instead of where it was in the .h
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
Diffstat (limited to 'gobject')
-rw-r--r--gobject/ChangeLog5
-rw-r--r--gobject/genums.c3
-rw-r--r--gobject/genums.h2
3 files changed, 8 insertions, 2 deletions
diff --git a/gobject/ChangeLog b/gobject/ChangeLog
index edda85979..f933ee5ff 100644
--- a/gobject/ChangeLog
+++ b/gobject/ChangeLog
@@ -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.
diff --git a/gobject/genums.c b/gobject/genums.c
index ef5e41a04..f18db25cf 100644
--- a/gobject/genums.c
+++ b/gobject/genums.c
@@ -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"
diff --git a/gobject/genums.h b/gobject/genums.h
index 13f519ccf..f04b7d60f 100644
--- a/gobject/genums.h
+++ b/gobject/genums.h
@@ -19,8 +19,6 @@
#ifndef __G_ENUMS_H__
#define __G_ENUMS_H__
-#include <string.h>
-
#include <gobject/gtype.h>