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