summaryrefslogtreecommitdiff
path: root/libc/string/bcopy.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/bcopy.c')
-rw-r--r--libc/string/bcopy.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/libc/string/bcopy.c b/libc/string/bcopy.c
index 59e586b34..7e4f2328a 100644
--- a/libc/string/bcopy.c
+++ b/libc/string/bcopy.c
@@ -7,10 +7,13 @@
#include "_string.h"
-void attribute_hidden __bcopy(const void *s2, void *s1, size_t n)
+libc_hidden_proto(bcopy)
+libc_hidden_proto(memmove)
+
+void bcopy(const void *s2, void *s1, size_t n)
{
#if 1
- __memmove(s1, s2, n);
+ memmove(s1, s2, n);
#else
#ifdef __BCC__
register char *s;
@@ -49,5 +52,4 @@ void attribute_hidden __bcopy(const void *s2, void *s1, size_t n)
#endif
#endif
}
-
-strong_alias(__bcopy,bcopy)
+libc_hidden_def(bcopy)