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