math: x86_64 version of expl, fixed some comments in the i386 version
[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);
 }