summaryrefslogtreecommitdiff
path: root/libc/string
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-01-30 07:35:34 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-01-30 07:35:34 +0000
commit9de494dadb01c932c5d5dc0a6316dc7f028aace9 (patch)
tree11dbe0f0697e73ad4794874b54426f6efd6a276a /libc/string
parent514c861a1dc349d81c12ce4cf3bba769a2d7281b (diff)
Change the only bcopy user to memmove and remove internal version of bcopy
Diffstat (limited to 'libc/string')
-rw-r--r--libc/string/bcopy.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/string/bcopy.c b/libc/string/bcopy.c
index 7e4f2328a..11c3e8015 100644
--- a/libc/string/bcopy.c
+++ b/libc/string/bcopy.c
@@ -7,7 +7,6 @@
#include "_string.h"
-libc_hidden_proto(bcopy)
libc_hidden_proto(memmove)
void bcopy(const void *s2, void *s1, size_t n)
@@ -52,4 +51,3 @@ void bcopy(const void *s2, void *s1, size_t n)
#endif
#endif
}
-libc_hidden_def(bcopy)