diff options
Diffstat (limited to 'libc/string/generic/strlen.c')
-rw-r--r-- | libc/string/generic/strlen.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/string/generic/strlen.c b/libc/string/generic/strlen.c index aca8c2bd9..6c1b5eae3 100644 --- a/libc/string/generic/strlen.c +++ b/libc/string/generic/strlen.c @@ -22,8 +22,6 @@ #include <string.h> #include <stdlib.h> -#undef strlen - /* Return the length of the null-terminated string STR. Scan for the null terminator quickly by testing four bytes at a time. */ size_t attribute_hidden __strlen (const char *str) @@ -149,4 +147,4 @@ size_t attribute_hidden __strlen (const char *str) } } -strong_alias(__strlen, strlen) +strong_alias(__strlen,strlen) |