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
Fixes compile failure if REENTRANT_SYSCALLS_PROVIDED and MISSING_SYSCALL_NAMES defined
[newlib-cygwin.git]
/
libgloss
/
cris
/
outbyte.c
blob
210339f8ef18a7c23b56a24b6bdc77d08536ba69
1
/* Low-level kind-of-support for CRIS. Mostly used as a placeholder
2
function. Too small and obvious to warrant a copyright notice. */
3
4
#include <unistd.h>
5
void
6
outbyte
(
int
ch
)
7
{
8
write
(
1
, &
ch
,
1
);
9
}