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: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git]
/
newlib
/
libc
/
machine
/
spu
/
putchar.c
blob
7da00e0d72ff69a2db59076d9a53be7502d350a7
1
#include <stdio.h>
2
3
#include
"c99ppe.h"
4
5
#undef putchar
6
7
#ifndef _REENT_ONLY
8
9
int
10
putchar
(
c
)
11
int
c
;
12
{
13
/* c gets overwritten before return */
14
15
return
__send_to_ppe
(
SPE_C99_SIGNALCODE
,
SPE_C99_PUTCHAR
, &
c
);
16
}
17
18
#endif
/* ! _REENT_ONLY */