about summary refs log tree commit diff
path: root/sysdeps/generic/strlen.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic/strlen.c')
-rw-r--r--sysdeps/generic/strlen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/generic/strlen.c b/sysdeps/generic/strlen.c
index 37dc9ed20c..1fb8b1c97c 100644
--- a/sysdeps/generic/strlen.c
+++ b/sysdeps/generic/strlen.c
@@ -20,10 +20,10 @@
 
 #include <string.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
 strlen (str)
      const char *str;