Sign in
mojo
/
mojo-tools
/
1c9ee41b9bdf9873af3afb4f386232cb6b3fbcd7
/
.
/
fusl
/
src
/
stdio
/
putchar_unlocked.c
blob: 6bcdfa8c254dca77ce2efd5d98c211ff5e689678 [
file
]
#include
"stdio_impl.h"
int
putchar_unlocked
(
int
c
)
{
return
putc_unlocked
(
c
,
stdout
);
}