* regex.c (bzero) [!_LIBC]: Cast the call to memcpy to (void).

From-SVN: r208558
This commit is contained in:
Uros Bizjak 2014-03-13 23:04:07 +01:00
parent 39a1ebb3dd
commit dd19cdda76
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ char *realloc ();
# include <string.h>
# ifndef bzero
# ifndef _LIBC
# define bzero(s, n) memset (s, '\0', n)
# define bzero(s, n) ((void) memset (s, '\0', n))
# else
# define bzero(s, n) __bzero (s, n)
# endif