From 807274756e2b7c7fe583afe4897e4ff62cf34f4d Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Mon, 6 Jun 1994 23:31:51 +0000 Subject: [PATCH] emulate bzero --- config.h.in | 6 ++++++ 1 file changed, 6 insertions(+) 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 -- 2.40.0