initial check-in, version 0.5.0
[musl] / src / stdio / getc_unlocked.c
1 #include "stdio_impl.h"
2
3 int getc_unlocked(FILE *f)
4 {
5         return f->rpos < f->rstop ? *f->rpos++ : __uflow(f);
6 }
7
8 weak_alias (getc_unlocked, fgetc_unlocked);