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/towctrans.c')
-rw-r--r--newlib/libc/ctype/towctrans.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/ctype/towctrans.c b/newlib/libc/ctype/towctrans.c
index 3500cbaac..edbdfce41 100644
--- a/newlib/libc/ctype/towctrans.c
+++ b/newlib/libc/ctype/towctrans.c
@@ -76,8 +76,7 @@ No supporting OS subroutines are required.
#include "local.h"
wint_t
-_DEFUN (_towctrans_r, (r, c, w),
- struct _reent *r,
+_towctrans_r (struct _reent *r,
wint_t c,
wctrans_t w)
{
@@ -94,8 +93,7 @@ _DEFUN (_towctrans_r, (r, c, w),
#ifndef _REENT_ONLY
wint_t
-_DEFUN (towctrans, (c, w),
- wint_t c,
+towctrans (wint_t c,
wctrans_t w)
{
return _towctrans_r (_REENT, c, w);