around definition of bzero.
+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.
#include <fcntl.h>
#include <stdlib.h>
#include <stdio.h>
-#include <strings.h>
#ifndef __MINGW32__
#include <unistd.h>
#include <sys/param.h>
#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};