aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/ctype/ispunct.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/ctype/ispunct.c')
-rw-r--r--newlib/libc/ctype/ispunct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/ctype/ispunct.c b/newlib/libc/ctype/ispunct.c
index 83796dc..9c5a3fc 100644
--- a/newlib/libc/ctype/ispunct.c
+++ b/newlib/libc/ctype/ispunct.c
@@ -45,7 +45,7 @@ No supporting OS subroutines are required.
#undef ispunct
int
-_DEFUN(ispunct,(c),int c)
+ispunct (int c)
{
return(__CTYPE_PTR[c+1] & _P);
}