xref: /aosp_15_r20/external/musl/src/stdio/getchar_unlocked.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include "stdio_impl.h"
2 
getchar_unlocked(void)3 int getchar_unlocked(void)
4 {
5 	return getc_unlocked(stdin);
6 }
7