Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/ctype/wctype.c')
-rw-r--r--newlib/libc/ctype/wctype.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/ctype/wctype.c b/newlib/libc/ctype/wctype.c
index 6cd9425bc..5f2ae7a25 100644
--- a/newlib/libc/ctype/wctype.c
+++ b/newlib/libc/ctype/wctype.c
@@ -76,8 +76,7 @@ No supporting OS subroutines are required.
#include "local.h"
wctype_t
-_DEFUN (_wctype_r, (r, c),
- struct _reent *r,
+_wctype_r (struct _reent *r,
const char *c)
{
switch (*c)
@@ -135,8 +134,7 @@ _DEFUN (_wctype_r, (r, c),
#ifndef _REENT_ONLY
wctype_t
-_DEFUN (wctype, (c),
- const char *c)
+wctype (const char *c)
{
return _wctype_r (_REENT, c);
}