]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Define macros stdin, stdout, and stderr.
authorUlrich Drepper <drepper@redhat.com>
Wed, 23 Feb 2000 05:40:23 +0000 (05:40 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 23 Feb 2000 05:40:23 +0000 (05:40 +0000)
libio/stdio.h

index 6056652bf95ad17b457c3f257eff6114a01c87de..e40663c5066a05a76b00561ce1e134a6454d3298 100644 (file)
@@ -1,5 +1,5 @@
 /* Define ISO C stdio on top of C++ iostreams.
-   Copyright (C) 1991, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc.
+   Copyright (C) 1991, 1994-1999, 2000 Free Software Foundation, Inc.
 
    The GNU C Library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public License as
@@ -114,6 +114,10 @@ typedef _G_fpos64_t fpos64_t;
 extern FILE *stdin;            /* Standard input stream.  */
 extern FILE *stdout;           /* Standard output stream.  */
 extern FILE *stderr;           /* Standard error output stream.  */
+/* C89/C99 say they're macros.  Make them happy.  */
+#define stdin stdin
+#define stdout stdout
+#define stderr stderr
 
 
 /* Remove file FILENAME.  */