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