]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - libio/putwchar_u.c
libio: use stdout in puts and putchar, etc [BZ #24051].
[thirdparty/glibc.git] / libio / putwchar_u.c
index cfb46fc253d047c29731c81863f8bd06157dda27..d943220031b7fee4407a0659f491dda9b60877af 100644 (file)
@@ -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);
 }