mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-14 04:59:09 +08:00
* 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.
15 lines
156 B
C
15 lines
156 B
C
#include <stdio.h>
|
|
|
|
#include "c99ppe.h"
|
|
|
|
void
|
|
_DEFUN (perror, (s),
|
|
_CONST char *s)
|
|
|
|
{
|
|
send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_PERROR, &s);
|
|
|
|
return;
|
|
}
|
|
|