From 98414449d5fc54ac6ab937d84ab50db2eaad85c9 Mon Sep 17 00:00:00 2001 From: jean Date: Thu, 25 Jan 2001 18:51:26 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/; revision=1568 --- reactos/include/crtdll/stdio.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/reactos/include/crtdll/stdio.h b/reactos/include/crtdll/stdio.h index 8b4787b2655..4a3c66d1faf 100644 --- a/reactos/include/crtdll/stdio.h +++ b/reactos/include/crtdll/stdio.h @@ -22,9 +22,9 @@ * DISCLAMED. This includes but is not limited to warranties of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * $Revision: 1.11 $ - * $Author: ariadne $ - * $Date: 1999/05/09 14:00:05 $ + * $Revision: 1.12 $ + * $Author: jean $ + * $Date: 2001/01/25 18:51:26 $ * */ /* Appropriated for Reactos Crtdll by Ariadne */ @@ -100,12 +100,12 @@ typedef struct { * The three standard file pointers provided by the run time library. * NOTE: These will go to the bit-bucket silently in GUI applications! */ -extern FILE (*_iob)[]; /* A pointer to an array of FILE */ -#define stdin (&(*_iob)[0]) -#define stdout (&(*_iob)[1]) -#define stderr (&(*_iob)[2]) -#define stdaux (&(*_iob)[3]) -#define stdprn (&(*_iob)[4]) +extern FILE _iob[]; /* an array of FILE */ +#define stdin (&_iob[0]) +#define stdout (&_iob[1]) +#define stderr (&_iob[2]) +#define stdaux (&_iob[3]) +#define stdprn (&_iob[4]) /* Returned by various functions on end of file condition or error. */ #define EOF (-1)