mirror of
https://github.com/fluencelabs/musl
synced 2025-07-01 15:42:05 +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);
|
||
|
}
|