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