zig
Code
Branches
Tags
Commits
master
zig
/
lib
/
libc
/
musl
/
src
/
stdio
/
putchar_unlocked.c
Top
1
#
include
"stdio_impl.h"
2
3
int
putchar_unlocked
(
int
c
)
4
{
5
return
putc_unlocked
(
c
,
stdout
)
;
6
}