diff options
Diffstat (limited to 'libc/string/i386/strchr.c')
-rw-r--r-- | libc/string/i386/strchr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/i386/strchr.c b/libc/string/i386/strchr.c index 3f1aa7635..5ed87e816 100644 --- a/libc/string/i386/strchr.c +++ b/libc/string/i386/strchr.c @@ -32,6 +32,7 @@ #include <string.h> +libc_hidden_proto(strchr) char *strchr(const char *s, int c) { int d0; @@ -49,6 +50,5 @@ char *strchr(const char *s, int c) :"=a" (__res), "=&S" (d0) : "1" (s),"0" (c)); return __res; } -libc_hidden_proto(strchr) libc_hidden_def(strchr) strong_alias(strchr,index) |