From: Ulrich Drepper Date: Wed, 23 Feb 2000 05:40:23 +0000 (+0000) Subject: Define macros stdin, stdout, and stderr. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c2520a06a898e23d1ad251c4020b2e6acd158f4;p=thirdparty%2Fglibc.git Define macros stdin, stdout, and stderr. --- diff --git a/libio/stdio.h b/libio/stdio.h index 6056652bf95..e40663c5066 100644 --- a/libio/stdio.h +++ b/libio/stdio.h @@ -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. */