major stdio overhaul, using readv/writev, plus other changes
[musl] / src / stdio / getchar_unlocked.c
index 299cb95..355ac31 100644 (file)
@@ -2,5 +2,5 @@
 
 int getchar_unlocked(void)
 {
-       return stdin->rpos < stdin->rstop ? *stdin->rpos++ : __uflow(stdin);
+       return getc_unlocked(stdin);
 }