summaryrefslogtreecommitdiff
path: root/src/strings/bzero.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strings/bzero.c')
-rw-r--r--src/strings/bzero.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/strings/bzero.c b/src/strings/bzero.c
deleted file mode 100644
index dd28c8b6..00000000
--- a/src/strings/bzero.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#if 0
-
-#include <string.h>
-#include <strings.h>
-
-void bzero(void* s, size_t n)
-{
- (void)memset(s, '\0', n);
-}
-
-/*
-XOPEN(400,700)
-*/
-
-
-#endif