diff options
Diffstat (limited to 'newlib/libc/stdio/nano-vfprintf.c')
-rw-r--r-- | newlib/libc/stdio/nano-vfprintf.c | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/newlib/libc/stdio/nano-vfprintf.c b/newlib/libc/stdio/nano-vfprintf.c index e87f374..1c5a075 100644 --- a/newlib/libc/stdio/nano-vfprintf.c +++ b/newlib/libc/stdio/nano-vfprintf.c @@ -182,8 +182,7 @@ static char *rcsid = "$Id$"; and vfwprintf. */ #ifdef STRING_ONLY int -_DEFUN(__ssputs_r, (ptr, fp, buf, len), - struct _reent *ptr, +__ssputs_r (struct _reent *ptr, FILE *fp, const char *buf, size_t len) @@ -253,8 +252,7 @@ err: char output, but __ssprint_r cannot be discarded because it is used by a serial of functions like svfwprintf for wide char output. */ int -_DEFUN(__ssprint_r, (ptr, fp, uio), - struct _reent *ptr, +__ssprint_r (struct _reent *ptr, FILE *fp, register struct __suio *uio) { @@ -357,8 +355,7 @@ err: /* Flush out all the vectors defined by the given uio, then reset it so that it can be reused. */ int -_DEFUN(__sprint_r, (ptr, fp, uio), - struct _reent *ptr, +__sprint_r (struct _reent *ptr, FILE *fp, register struct __suio *uio) { @@ -402,8 +399,7 @@ out: } _NOINLINE_STATIC int -_DEFUN(__sfputc_r, (ptr, c, fp), - struct _reent *ptr, +__sfputc_r (struct _reent *ptr, int c, FILE *fp) { @@ -414,8 +410,7 @@ _DEFUN(__sfputc_r, (ptr, c, fp), } int -_DEFUN(__sfputs_r, (ptr, fp, buf, len), - struct _reent *ptr, +__sfputs_r (struct _reent *ptr, FILE *fp, const char *buf, size_t len) @@ -452,8 +447,7 @@ int _EXFUN(_VFPRINTF_R, (struct _reent *, FILE *, const char *, va_list)); #ifndef STRING_ONLY int -_DEFUN(VFPRINTF, (fp, fmt0, ap), - FILE * fp, +VFPRINTF (FILE * fp, const char *fmt0, va_list ap) { @@ -481,8 +475,7 @@ _EXFUN(vfiprintf, (FILE *, const char *, __VALIST) #endif int -_DEFUN(_VFPRINTF_R, (data, fp, fmt0, ap), - struct _reent *data, +_VFPRINTF_R (struct _reent *data, FILE * fp, const char *fmt0, va_list ap) |