diff options
Diffstat (limited to 'newlib/libc/stdio/fputws.c')
-rw-r--r-- | newlib/libc/stdio/fputws.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdio/fputws.c b/newlib/libc/stdio/fputws.c index 8a470fc..92f2cbf 100644 --- a/newlib/libc/stdio/fputws.c +++ b/newlib/libc/stdio/fputws.c @@ -94,8 +94,7 @@ PORTABILITY #endif int -_DEFUN(_fputws_r, (ptr, ws, fp), - struct _reent *ptr, +_fputws_r (struct _reent *ptr, const wchar_t *ws, FILE *fp) { @@ -158,8 +157,7 @@ error: } int -_DEFUN(fputws, (ws, fp), - const wchar_t *__restrict ws, +fputws (const wchar_t *__restrict ws, FILE *__restrict fp) { struct _reent *reent = _REENT; |