]> granicus.if.org Git - sudo/commitdiff
emulate bzero
authorTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 6 Jun 1994 23:31:51 +0000 (23:31 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 6 Jun 1994 23:31:51 +0000 (23:31 +0000)
config.h.in

index 220da85664fc81556da5865e2d9c4776e6a7f33c..da15023796894b213752b91d1db9c528479b4c51 100644 (file)
 #  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