diff options
Diffstat (limited to 'libc/string/i386/memcpy.c')
-rw-r--r-- | libc/string/i386/memcpy.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/string/i386/memcpy.c b/libc/string/i386/memcpy.c index 1cd234685..12ba8d7de 100644 --- a/libc/string/i386/memcpy.c +++ b/libc/string/i386/memcpy.c @@ -32,7 +32,6 @@ #include <string.h> -#undef memcpy void attribute_hidden *__memcpy(void * to, const void * from, size_t n) { int d0, d1, d2; @@ -51,4 +50,4 @@ void attribute_hidden *__memcpy(void * to, const void * from, size_t n) return (to); } -strong_alias(__memcpy, memcpy) +strong_alias(__memcpy,memcpy) |