aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/string/strlwr.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/strlwr.c')
-rw-r--r--newlib/libc/string/strlwr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/string/strlwr.c b/newlib/libc/string/strlwr.c
index c47ff48..7211c59 100644
--- a/newlib/libc/string/strlwr.c
+++ b/newlib/libc/string/strlwr.c
@@ -29,8 +29,7 @@ QUICKREF
#include <ctype.h>
char *
-_DEFUN (strlwr, (s),
- char *s)
+strlwr (char *s)
{
unsigned char *ucs = (unsigned char *) s;
for ( ; *ucs != '\0'; ucs++)