aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/ctype/iswdigit.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/ctype/iswdigit.c')
-rw-r--r--newlib/libc/ctype/iswdigit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/ctype/iswdigit.c b/newlib/libc/ctype/iswdigit.c
index 7926f8d..2b26141 100644
--- a/newlib/libc/ctype/iswdigit.c
+++ b/newlib/libc/ctype/iswdigit.c
@@ -36,7 +36,7 @@ No supporting OS subroutines are required.
#include <wctype.h>
int
-_DEFUN(iswdigit,(c), wint_t c)
+iswdigit (wint_t c)
{
return (c >= (wint_t)'0' && c <= (wint_t)'9');
}