diff options
Diffstat (limited to 'newlib/libc/stdio/fwide.c')
-rw-r--r-- | newlib/libc/stdio/fwide.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdio/fwide.c b/newlib/libc/stdio/fwide.c index 719a58a..9b5a3d1 100644 --- a/newlib/libc/stdio/fwide.c +++ b/newlib/libc/stdio/fwide.c @@ -48,8 +48,7 @@ C99, POSIX.1-2001. #include "local.h" int -_DEFUN(_fwide_r, (ptr, fp, mode), - struct _reent *ptr, +_fwide_r (struct _reent *ptr, FILE *fp, int mode) { @@ -70,8 +69,7 @@ _DEFUN(_fwide_r, (ptr, fp, mode), } int -_DEFUN(fwide, (fp, mode), - FILE *fp, +fwide (FILE *fp, int mode) { return _fwide_r (_REENT, fp, mode); |