mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-18 02:50:09 +00:00
13 lines
263 B
C
13 lines
263 B
C
|
#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;
|