diff options
Diffstat (limited to 'newlib/libc/string/strnlen.c')
-rw-r--r-- | newlib/libc/string/strnlen.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/string/strnlen.c b/newlib/libc/string/strnlen.c index 42f460f..3ee18d1 100644 --- a/newlib/libc/string/strnlen.c +++ b/newlib/libc/string/strnlen.c @@ -30,8 +30,7 @@ PORTABILITY #include <string.h> size_t -_DEFUN (strnlen, (str, n), - const char *str, +strnlen (const char *str, size_t n) { const char *start = str; |