Cygwin: Add new APIs tc[gs]etwinsize()
[newlib-cygwin.git] / newlib / libc / machine / spu / puts.c
blob2f05067934951c4603cfa3aaafa84cffcc59dfa1
1 #include <stdio.h>
3 #include "c99ppe.h"
5 #ifndef _REENT_ONLY
7 int
8 puts (char const * s)
10 /* The return value gets written over s
12 return __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_PUTS, &s);
15 #endif /* ! _REENT_ONLY */