diff options
Diffstat (limited to 'libio/stdio.c')
-rw-r--r-- | libio/stdio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libio/stdio.c b/libio/stdio.c index adcef35b65..1b7a1bc2e0 100644 --- a/libio/stdio.c +++ b/libio/stdio.c @@ -30,9 +30,9 @@ #undef stdin #undef stdout #undef stderr -_IO_FILE *stdin = (FILE *) &_IO_2_1_stdin_; -_IO_FILE *stdout = (FILE *) &_IO_2_1_stdout_; -_IO_FILE *stderr = (FILE *) &_IO_2_1_stderr_; +FILE *stdin = (FILE *) &_IO_2_1_stdin_; +FILE *stdout = (FILE *) &_IO_2_1_stdout_; +FILE *stderr = (FILE *) &_IO_2_1_stderr_; #undef _IO_stdin #undef _IO_stdout |