]> sourceware.org Git - newlib-cygwin.git/commitdiff
* gmon.c: Drop gratuitous inclusion of strings.h. Remove __MINGW32__
authorCorinna Vinschen <corinna@vinschen.de>
Tue, 18 Jun 2013 10:01:33 +0000 (10:01 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Tue, 18 Jun 2013 10:01:33 +0000 (10:01 +0000)
around definition of bzero.

winsup/cygwin/ChangeLog
winsup/cygwin/gmon.c

index b6e0a109071e82569ebebc0158e7ef1232402707..cc7245fe2b8d54a55e1cca581d0a4f65b03eee23 100644 (file)
@@ -1,3 +1,8 @@
+2013-06-18  Corinna Vinschen  <corinna@vinschen.de>
+
+       * gmon.c: Drop gratuitous inclusion of strings.h.  Remove __MINGW32__
+       around definition of bzero.
+
 2013-06-18  Corinna Vinschen  <corinna@vinschen.de>
 
        * Makefile.in (VPATH): Drop CONFIG_DIR.
index 139aa44825560256e9bf85abf768a2fbd8b639ac..96b1189eee60f1e55c37f441c08cb0f99698b639 100644 (file)
@@ -39,7 +39,6 @@ static char rcsid[] = "$OpenBSD: gmon.c,v 1.8 1997/07/23 21:11:27 kstailey Exp $
 #include <fcntl.h>
 #include <stdlib.h>
 #include <stdio.h>
-#include <strings.h>
 #ifndef __MINGW32__
 #include <unistd.h>
 #include <sys/param.h>
@@ -57,10 +56,8 @@ static char rcsid[] = "$OpenBSD: gmon.c,v 1.8 1997/07/23 21:11:27 kstailey Exp $
 #define MINUS_ONE_P (-1)
 #endif
 
-#ifdef __MINGW32__
 #include <string.h>
 #define bzero(ptr,size) memset (ptr, 0, size);
-#endif
 
 struct gmonparam _gmonparam = { GMON_PROF_OFF, NULL, 0, NULL, 0, NULL, 0, 0L,
   0, 0, 0, 0};
This page took 0.034968 seconds and 5 git commands to generate.