diff options
Diffstat (limited to 'src/stdio/putchar_unlocked.c')
-rw-r--r-- | src/stdio/putchar_unlocked.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/stdio/putchar_unlocked.c b/src/stdio/putchar_unlocked.c index 72d47d15..8b5d0603 100644 --- a/src/stdio/putchar_unlocked.c +++ b/src/stdio/putchar_unlocked.c @@ -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); } |