blob: cd56dba307dc7bf57a38c5f082e10f326a66526a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "libioP.h"
#include "stdio.h"
/* Define non-macro versions of stdin/stdout/stderr,
* for use by debuggers. */
#undef stdin
#undef stdout
#undef stderr
FILE* stdin = &_IO_stdin_.file;
FILE* stdout = &_IO_stdout_.file;
FILE* stderr = &_IO_stderr_.file;
|