Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
refs/heads/master
/
.
/
src
/
newlib
/
libgloss
/
cris
/
outbyte.c
blob: 1cb686b9687b2fa7f146ce9731ecf476e966f8a2 [
file
] [
log
] [
blame
] [
edit
]
/* Low-level kind-of-support for CRIS. Mostly used as a placeholder
function. Too small and obvious to warrant a copyright notice. */
#include
<stdio.h>
void
outbyte
(
int
ch
)
{
write
(
1
,
&
ch
,
1
);
}