]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - libio/putchar_u.c
libio: use stdout in puts and putchar, etc [BZ #24051].
[thirdparty/glibc.git] / libio / putchar_u.c
index 37d03ad364b770b0e0ae27d4643d9b2539836d08..1eebf0fc8f5ef3f46f4af4f2b249571f9f330ac8 100644 (file)
@@ -23,6 +23,6 @@
 int
 putchar_unlocked (int c)
 {
-  CHECK_FILE (_IO_stdout, EOF);
-  return _IO_putc_unlocked (c, _IO_stdout);
+  CHECK_FILE (stdout, EOF);
+  return _IO_putc_unlocked (c, stdout);
 }