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