Sign in
mojo
/
mojo-tools
/
9cdeb358dcfb243d039e9692e87fc038ec63cf5e
/
.
/
fusl
/
src
/
stdio
/
putchar.c
blob: 945636d5e66288cd23da8b4b5fb2390ec6583fa8 [
file
] [
log
] [
blame
]
#include
<stdio.h>
int
putchar
(
int
c
)
{
return
fputc
(
c
,
stdout
);
}