/* @(#)data.c 2.2 SCCS id keyword */ #include char _sibuf[BUFSIZ]; char _sobuf[BUFSIZ]; struct _iobuf _iob[_NFILE] = { { _sibuf, 0, _sibuf, _IOREAD, 0}, #ifndef UCB_STDIO { NULL, 0, NULL, _IOWRT, 1}, #else { _sobuf, 0, _sobuf, _IOWRT, 1}, #endif {NULL, 0, NULL, _IOWRT+_IONBF, 2}, }; /* * Ptr to end of buffers */ struct _iobuf *_lastbuf = { &_iob[_NFILE] };