mirror of
https://github.com/fluencelabs/musl
synced 2025-05-24 05:01:32 +00:00
7 lines
126 B
C
7 lines
126 B
C
|
#include "stdio_impl.h"
|
||
|
|
||
|
int getchar_unlocked(void)
|
||
|
{
|
||
|
return stdin->rpos < stdin->rstop ? *stdin->rpos++ : __uflow(stdin);
|
||
|
}
|