diff options
Diffstat (limited to 'newlib/libc/stdio/printf.c')
-rw-r--r-- | newlib/libc/stdio/printf.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdio/printf.c b/newlib/libc/stdio/printf.c index 7398677..a323f5a 100644 --- a/newlib/libc/stdio/printf.c +++ b/newlib/libc/stdio/printf.c @@ -23,8 +23,7 @@ #include "local.h" int -_DEFUN(_printf_r, (ptr, fmt), - struct _reent *ptr, +_printf_r (struct _reent *ptr, const char *__restrict fmt, ...) { int ret; @@ -46,8 +45,7 @@ _EXFUN(_iprintf_r, (struct _reent *, const char *, ...) #ifndef _REENT_ONLY int -_DEFUN(printf, (fmt), - const char *__restrict fmt, ...) +printf (const char *__restrict fmt, ...) { int ret; va_list ap; |