Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git] / newlib / libc / machine / spu / putchar.c
blob7da00e0d72ff69a2db59076d9a53be7502d350a7
1 #include <stdio.h>
3 #include "c99ppe.h"
5 #undef putchar
7 #ifndef _REENT_ONLY
9 int
10 putchar (c)
11 int c;
13 /* c gets overwritten before return */
15 return __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_PUTCHAR, &c);
18 #endif /* ! _REENT_ONLY */