From: Todd C. Miller Date: Mon, 6 Jun 1994 23:31:51 +0000 (+0000) Subject: emulate bzero X-Git-Tag: SUDO_1_3_1~169 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=807274756e2b7c7fe583afe4897e4ff62cf34f4d;p=sudo emulate bzero --- diff --git a/config.h.in b/config.h.in index 220da8566..da1502379 100644 --- a/config.h.in +++ b/config.h.in @@ -100,6 +100,12 @@ # define strrchr rindex #endif +/* Define if you have bzero(3). */ +#undef HAVE_BZERO +#ifndef HAVE_BZERO +# define bzero(S, N) (memset((void *)S, 0, N)) +#endif + /* Define if you have sysconf(3c). */ #undef HAVE_SYSCONF