Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
0b44a0315b47dd8eced9f3b7f31580cf14bbfc01
/
.
/
src
/
stdio
/
getchar_unlocked.c
blob: 299cb9585b354ca86bc4541ebe3114d16451c77a [
file
] [
log
] [
blame
]
#include
"stdio_impl.h"
int
getchar_unlocked
(
void
)
{
return
stdin
->
rpos
<
stdin
->
rstop
?
*
stdin
->
rpos
++
:
__uflow
(
stdin
);
}