* profile/gmon.c [__MINGW32__]: Include string.h for

memset prototype.
This commit is contained in:
Danny Smith
2004-08-15 10:45:43 +00:00
parent 18cff5fa2b
commit 40929746ba
2 changed files with 7 additions and 1 deletions

View File

@@ -56,6 +56,7 @@ static char rcsid[] = "$OpenBSD: gmon.c,v 1.8 1997/07/23 21:11:27 kstailey Exp $
//extern char *minbrk __asm ("minbrk");
#ifdef __MINGW32__
#include <string.h>
#define bzero(ptr,size) memset (ptr, 0, size);
#endif