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.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/strings/bcopy.c b/src/strings/bcopy.c
new file mode 100644
index 00000000..0de75234
--- /dev/null
+++ b/src/strings/bcopy.c
@@ -0,0 +1,10 @@
+#include <strings.h>
+
+int bcopy(const void *s1, void *s2, size_t n)
+{
+ return 0;
+}
+
+/*
+XOPEN(400,700)
+*/