1 /* @(#)data.c 4.3 (Berkeley) 05/15/84 */ 2 #include <stdio.h> 3 #include <sys/param.h> 4 5 struct _iobuf _iob[_NFILE] ={ 6 { 0, NULL, NULL, NULL, _IOREAD, 0}, 7 { 0, NULL, NULL, NULL, _IOWRT, 1}, 8 { 0, NULL, NULL, NULL, _IOWRT+_IONBF, 2}, 9 }; 10 /* 11 * Ptr to end of buffers 12 */ 13 struct _iobuf *_lastbuf ={ &_iob[_NFILE] }; 14