Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stdio
getchar_unlocked.c
pretty
plain
permalink
blame
history
•
6 lines
•
86 B
1
#include "stdio_impl.h"
2
3
int getchar_unlocked(void)
4
{
5
	return getc_unlocked(stdin);
6
}