about summary refs log tree commit diff
path: root/libio/putwchar_u.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/putwchar_u.c')
-rw-r--r--libio/putwchar_u.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/putwchar_u.c b/libio/putwchar_u.c
index cfb46fc253..d943220031 100644
--- a/libio/putwchar_u.c
+++ b/libio/putwchar_u.c
@@ -21,6 +21,6 @@
 wint_t
 putwchar_unlocked (wchar_t wc)
 {
-  CHECK_FILE (_IO_stdout, WEOF);
-  return _IO_putwc_unlocked (wc, _IO_stdout);
+  CHECK_FILE (stdout, WEOF);
+  return _IO_putwc_unlocked (wc, stdout);
 }