diff options
Diffstat (limited to 'newlib/libc/machine/spu/putchar.c')
-rw-r--r-- | newlib/libc/machine/spu/putchar.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/newlib/libc/machine/spu/putchar.c b/newlib/libc/machine/spu/putchar.c deleted file mode 100644 index 67eb59976..000000000 --- a/newlib/libc/machine/spu/putchar.c +++ /dev/null @@ -1,20 +0,0 @@ -#include <stdio.h> - -#include "c99ppe.h" - -#undef putchar - -#ifndef _REENT_ONLY - -int -putchar (c) - int c; -{ - CHECK_STD_INIT(_REENT); - - /* c gets overwritten before return */ - - return __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_PUTCHAR, &c); -} - -#endif /* ! _REENT_ONLY */ |