diff options
Diffstat (limited to 'newlib/libc/string/strcasecmp.c')
-rw-r--r-- | newlib/libc/string/strcasecmp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/string/strcasecmp.c b/newlib/libc/string/strcasecmp.c index 4a48aa6..c75a3e2 100644 --- a/newlib/libc/string/strcasecmp.c +++ b/newlib/libc/string/strcasecmp.c @@ -36,8 +36,7 @@ QUICKREF #include <ctype.h> int -_DEFUN (strcasecmp, (s1, s2), - const char *s1, +strcasecmp (const char *s1, const char *s2) { int d = 0; |