home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / libio / stdio / stdio.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-10  |  263 b   |  13 lines

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