diff options
Diffstat (limited to 'libio/putchar_u.c')
-rw-r--r-- | libio/putchar_u.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/putchar_u.c b/libio/putchar_u.c index f8f387ac4e..6800695dd0 100644 --- a/libio/putchar_u.c +++ b/libio/putchar_u.c @@ -25,6 +25,6 @@ int putchar_unlocked (c) int c; { - CHECK_FILE (stdout, EOF); - return _IO_putc_unlocked (c, stdout); + CHECK_FILE (_IO_stdout, EOF); + return _IO_putc_unlocked (c, _IO_stdout); } |