diff options
Diffstat (limited to 'libc/string/i386/memchr.c')
-rw-r--r-- | libc/string/i386/memchr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/i386/memchr.c b/libc/string/i386/memchr.c index b2fde07ad..229d42919 100644 --- a/libc/string/i386/memchr.c +++ b/libc/string/i386/memchr.c @@ -32,6 +32,7 @@ #include <string.h> +libc_hidden_proto(memchr) void *memchr(const void *cs, int c, size_t count) { int d0; @@ -47,5 +48,4 @@ void *memchr(const void *cs, int c, size_t count) :"=D" (__res), "=&c" (d0) : "a" (c),"0" (cs),"1" (count)); return __res; } -libc_hidden_proto(memchr) libc_hidden_def(memchr) |