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