fixed memset macro

This commit is contained in:
Todd C. Miller
1995-03-30 03:06:12 +00:00
parent e281c20f4e
commit 0d4643159e

View File

@@ -139,7 +139,7 @@
/* Define if you have memset(3). */
#undef HAVE_MEMSET
#if !defined(HAVE_MEMSET) && !defined(memset)
# define memset(S, 0, N) (bzero(S, N))
# define memset(S, X, N) (bzero(S, N))
#endif
/* Define if you have sysconf(3c). */