home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / stdio / frlist.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-26  |  267 b   |  12 lines

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdio.h>
  3. #include <libc/local.h>
  4.  
  5. static __file_rec __initial_file_rec = {
  6.   0,
  7.   5,
  8. { stdin, stdout, stderr, stdprn, stdaux }
  9. };
  10.  
  11. __file_rec *__file_rec_list = &__initial_file_rec;
  12.