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