fix indention with spaces in powerpc asm
[oweals/musl.git] / src / stdio / getchar_unlocked.c
index 299cb9585b354ca86bc4541ebe3114d16451c77a..355ac318d43d2371af6399bf7652d2baabf5d9b4 100644 (file)
@@ -2,5 +2,5 @@
 
 int getchar_unlocked(void)
 {
-       return stdin->rpos < stdin->rstop ? *stdin->rpos++ : __uflow(stdin);
+       return getc_unlocked(stdin);
 }