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 e0ff6bfadeda419ad038318038bffb537a9ac4f7..8dcb53845c045c50d8cd03278392bd5937c04be7 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 79dbb03537011006bee82d3c5d7c2c2fe5734062..13f519ccfaa73367f3c5fe0497a1a048468dc4fd 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 3448a34b52330354953dab9c995873cc890036c7..62016cd5f7f9da72a93b8392e73a46bbfa771015 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 7c4cb31ebb2488388ffb1242a65439340555e0a9..bdc0a9c9f023dedf79b4e2dbb057fddc76eee51d 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 --- */