diff options
Diffstat (limited to 'newlib/libc/machine/spu/printf.c')
-rw-r--r-- | newlib/libc/machine/spu/printf.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/newlib/libc/machine/spu/printf.c b/newlib/libc/machine/spu/printf.c index d79f35dc5..695bb5a15 100644 --- a/newlib/libc/machine/spu/printf.c +++ b/newlib/libc/machine/spu/printf.c @@ -1,4 +1,3 @@ - #include <_ansi.h> #include <stdio.h> @@ -28,7 +27,7 @@ _DEFUN (printf, (fmt,ap), int #error printf (fmt, va_alist) - char *fmt; + _CONST char *fmt; va_dcl #endif { @@ -38,13 +37,11 @@ printf (fmt, va_alist) args.fmt = fmt; #ifdef _HAVE_STDC - va_start (args.ap, args.fmt); + va_start (args.ap, fmt); #else va_start (args.ap); #endif - - /* ret = vfprintf (_stdout_r (_REENT), fmt, ap);*/ send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_VPRINTF, &args); va_end (args.ap); |