summaryrefslogtreecommitdiff
path: root/libc/string/i386/strlen.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/i386/strlen.c')
-rw-r--r--libc/string/i386/strlen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/i386/strlen.c b/libc/string/i386/strlen.c
index 2ef57e3f8..f0767b600 100644
--- a/libc/string/i386/strlen.c
+++ b/libc/string/i386/strlen.c
@@ -32,6 +32,7 @@
#include <string.h>
+libc_hidden_proto(strlen)
size_t strlen(const char *s)
{
int d0;
@@ -44,5 +45,4 @@ size_t strlen(const char *s)
:"=c" (__res), "=&D" (d0) :"1" (s),"a" (0), "0" (0xffffffff));
return __res;
}
-libc_hidden_proto(strlen)
libc_hidden_def(strlen)