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