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