diff options
Diffstat (limited to 'newlib/libc/string/strlen.c')
-rw-r--r-- | newlib/libc/string/strlen.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/string/strlen.c b/newlib/libc/string/strlen.c index df76d5f..acffa49 100644 --- a/newlib/libc/string/strlen.c +++ b/newlib/libc/string/strlen.c @@ -49,8 +49,7 @@ QUICKREF #endif size_t -_DEFUN (strlen, (str), - const char *str) +strlen (const char *str) { const char *start = str; |