mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-29 02:20:21 +08:00
505ccc75c4
* libc/machine/spu/c99ppe.h: New file * libc/machine/spu/perror.c: New file to override libc/stdio version. * libc/machine/spu/printf.c: New file * libc/machine/spu/putchar.c: New file * libc/machine/spu/puts.c: New file * libc/machine/spu/vprintf.c: New file * libc/machine/spu/vsnprintf.c: New file * libc/machine/spu/vsprintf.c: New file * libc/machine/spu/Makefile.am: Add new targets. * libc/machine/spu/Makefile.in: Regenerated.
40 lines
533 B
C
40 lines
533 B
C
|
|
#include <_ansi.h>
|
|
#include <stdio.h>
|
|
|
|
#include "c99ppe.h"
|
|
|
|
#ifdef _HAVE_STDC
|
|
#include <stdarg.h>
|
|
#else
|
|
#include <varargs.h>
|
|
#endif
|
|
|
|
typedef struct
|
|
{
|
|
char* fmt;
|
|
unsigned int pad0[ 3 ];
|
|
va_list ap;
|
|
} c99_vprintf_t;
|
|
|
|
#ifndef _REENT_ONLY
|
|
|
|
int
|
|
_DEFUN (vprintf, (fmt, ap),
|
|
_CONST char *fmt _AND
|
|
va_list ap)
|
|
{
|
|
int* ret;
|
|
c99_vprintf_t args;
|
|
ret = (int*) &args;
|
|
|
|
args.fmt = (char*) fmt;
|
|
va_copy(args.ap,ap);
|
|
|
|
send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_VPRINTF, &args);
|
|
|
|
return *ret;
|
|
}
|
|
|
|
#endif /* ! _REENT_ONLY */
|