diff options
Diffstat (limited to 'newlib/libc/stdio/wprintf.c')
-rw-r--r-- | newlib/libc/stdio/wprintf.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdio/wprintf.c b/newlib/libc/stdio/wprintf.c index ef212d8..176b16a 100644 --- a/newlib/libc/stdio/wprintf.c +++ b/newlib/libc/stdio/wprintf.c @@ -24,8 +24,7 @@ #include "local.h" int -_DEFUN(_wprintf_r, (ptr, fmt), - struct _reent *ptr, +_wprintf_r (struct _reent *ptr, const wchar_t *fmt, ...) { int ret; @@ -41,8 +40,7 @@ _DEFUN(_wprintf_r, (ptr, fmt), #ifndef _REENT_ONLY int -_DEFUN(wprintf, (fmt), - const wchar_t *__restrict fmt, ...) +wprintf (const wchar_t *__restrict fmt, ...) { int ret; va_list ap; |