diff options
Diffstat (limited to 'libc/string/i386/memchr.c')
-rw-r--r-- | libc/string/i386/memchr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/string/i386/memchr.c b/libc/string/i386/memchr.c index 5994a4b67..c7cd33758 100644 --- a/libc/string/i386/memchr.c +++ b/libc/string/i386/memchr.c @@ -32,7 +32,6 @@ #include <string.h> -#undef memchr void attribute_hidden *__memchr(const void *cs, int c, size_t count) { int d0; @@ -49,4 +48,4 @@ void attribute_hidden *__memchr(const void *cs, int c, size_t count) return __res; } -strong_alias(__memchr, memchr) +strong_alias(__memchr,memchr) |