use memset() instead of deprecated bzero()

This commit is contained in:
rlar
2016-07-30 20:58:33 +02:00
parent 141ed61ec8
commit d298d5cc2f
16 changed files with 16 additions and 37 deletions
-14
View File
@@ -599,20 +599,6 @@ stripWhiteSpacesInsideParens(char *str)
}
#ifndef HAVE_BZERO
#ifndef bzero
void
bzero(void *vptr, size_t num)
{
register char *ptr=vptr;
while (num-- > 0)
*ptr++ = '\0';
return;
}
#endif
#endif
bool
isquote( char ch )
{