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