diff options
Diffstat (limited to 'newlib/libc/stdio/vdprintf.c')
-rw-r--r-- | newlib/libc/stdio/vdprintf.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdio/vdprintf.c b/newlib/libc/stdio/vdprintf.c index 1b50e88..6261f62 100644 --- a/newlib/libc/stdio/vdprintf.c +++ b/newlib/libc/stdio/vdprintf.c @@ -13,8 +13,7 @@ #include "local.h" int -_DEFUN(_vdprintf_r, (ptr, fd, format, ap), - struct _reent *ptr, +_vdprintf_r (struct _reent *ptr, int fd, const char *__restrict format, va_list ap) @@ -42,8 +41,7 @@ _EXFUN(_vdiprintf_r, (struct _reent *, int, const char *, __VALIST) #ifndef _REENT_ONLY int -_DEFUN(vdprintf, (fd, format, ap), - int fd, +vdprintf (int fd, const char *__restrict format, va_list ap) { |