diff options
Diffstat (limited to 'newlib/libc/string/strchrnul.c')
-rw-r--r-- | newlib/libc/string/strchrnul.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/string/strchrnul.c b/newlib/libc/string/strchrnul.c index 14fd4e2..f5c3eb2 100644 --- a/newlib/libc/string/strchrnul.c +++ b/newlib/libc/string/strchrnul.c @@ -31,8 +31,7 @@ QUICKREF #include <string.h> char * -_DEFUN (strchrnul, (s1, i), - const char *s1, +strchrnul (const char *s1, int i) { char *s = strchr(s1, i); |