include string.h for memset include string.h for strcpy include string.h
authorOwen Taylor <otaylor@redhat.com>
Thu, 29 Jun 2000 20:02:39 +0000 (20:02 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Thu, 29 Jun 2000 20:02:39 +0000 (20:02 +0000)
Thu Jun 29 16:02:07 2000  Owen Taylor  <otaylor@redhat.com>

* gobject.c:include string.h for memset
* genums.h: include string.h for strcpy
* gvalue.c: include string.h for memset, memcpy.

gobject/ChangeLog
gobject/genums.h
gobject/gobject.c
gobject/gvalue.c

index e0ff6bf..8dcb538 100644 (file)
@@ -1,3 +1,9 @@
+Thu Jun 29 16:02:07 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gobject.c:include string.h for memset
+       * genums.h: include string.h for strcpy
+       * gvalue.c: include string.h for memset, memcpy.
+
 Sat Jun 24 23:03:04 2000  Tim Janik  <timj@gtk.org>
 
        * gtype.[hc]: provide G_TYPE_CHAR, G_TYPE_UCHAR, G_TYPE_BOOLEAN,
index 79dbb03..13f519c 100644 (file)
@@ -19,7 +19,9 @@
 #ifndef __G_ENUMS_H__
 #define __G_ENUMS_H__
 
-#include       <gobject/gtype.h>
+#include <string.h>
+
+#include <gobject/gtype.h>
 
 
 #ifdef __cplusplus
index 3448a34..62016cd 100644 (file)
  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  * Boston, MA 02111-1307, USA.
  */
-#include       "gobject.h"
 
+#include <string.h>
 
-#include       "gvaluecollector.h"
+#include "gobject.h"
+#include "gvaluecollector.h"
 
 
 #define        DEBUG_OBJECTS
index 7c4cb31..bdc0a9c 100644 (file)
  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  * Boston, MA 02111-1307, USA.
  */
-#include       "gvalue.h"
+
+#include <string.h>
+
+#include "gvalue.h"
 
 
 /* --- typedefs & structures --- */