repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: Add new APIs tc[gs]etwinsize()
[newlib-cygwin.git]
/
newlib
/
libc
/
machine
/
spu
/
puts.c
blob
2f05067934951c4603cfa3aaafa84cffcc59dfa1
1
#include <stdio.h>
2
3
#include
"c99ppe.h"
4
5
#ifndef _REENT_ONLY
6
7
int
8
puts
(
char const
*
s
)
9
{
10
/* The return value gets written over s
11
*/
12
return
__send_to_ppe
(
SPE_C99_SIGNALCODE
,
SPE_C99_PUTS
, &
s
);
13
}
14
15
#endif
/* ! _REENT_ONLY */