home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 272_01 / iobnbf.c < prev    next >
Text File  |  1987-03-29  |  402b  |  15 lines

  1. /*_ iob.c   Thu Oct 30 1986   Modified by: Walter Bright */
  2.  
  3. #include    <stdio.h>
  4.  
  5. FILE _iob[_NFILE] =
  6. {
  7.     {0,0,0,_IOTRAN | _IOREAD,0,1},        /* stdin    */
  8.     {0,0,0,_IOTRAN | _IOWRT | _IONBF ,1,1},    /* stdout    */
  9.     {0,0,0,_IOTRAN | _IOWRT | _IONBF ,2,1},    /* stderr    */
  10.     {0,0,0,_IOTRAN | _IORW  ,3,1},        /* stdaux    */
  11.     {0,0,0,_IOTRAN | _IOWRT ,4,1},        /* stdprn    */
  12.  
  13.     /* the rest have all 0 entries    */
  14. };
  15.