major stdio overhaul, using readv/writev, plus other changes
[musl] / src / stdio / putchar_unlocked.c
index 72d47d1..8b5d060 100644 (file)
@@ -2,6 +2,5 @@
 
 int putchar_unlocked(int c)
 {
-       return stdout->wpos < stdout->wstop ?
-               (*stdout->wpos++ = c) : __overflow(stdout, c);
+       return putc_unlocked(c, stdout);
 }