diff options
Diffstat (limited to 'newlib/libc/stdio/vsiprintf.c')
-rw-r--r-- | newlib/libc/stdio/vsiprintf.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/stdio/vsiprintf.c b/newlib/libc/stdio/vsiprintf.c index 150b4e7..ff83b78 100644 --- a/newlib/libc/stdio/vsiprintf.c +++ b/newlib/libc/stdio/vsiprintf.c @@ -32,8 +32,8 @@ static char sccsid[] = "%W% (Berkeley) %G%"; int _DEFUN(vsiprintf, (str, fmt, ap), - char *str _AND - const char *fmt _AND + char *str, + const char *fmt, va_list ap) { return _vsiprintf_r (_REENT, str, fmt, ap); @@ -43,9 +43,9 @@ _DEFUN(vsiprintf, (str, fmt, ap), int _DEFUN(_vsiprintf_r, (ptr, str, fmt, ap), - struct _reent *ptr _AND - char *str _AND - const char *fmt _AND + struct _reent *ptr, + char *str, + const char *fmt, va_list ap) { int ret; |