home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
minnie.tuhs.org
/
unixen.tar
/
unixen
/
PDP-11
/
Trees
/
V7
/
usr
/
src
/
libc
/
stdio
/
data.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1979-01-10
|
274 b
|
14 lines
#include <stdio.h>
char _sibuf[BUFSIZ];
char _sobuf[BUFSIZ];
struct _iobuf _iob[_NFILE] = {
{ _sibuf, 0, _sibuf, _IOREAD, 0},
{ NULL, 0, NULL, _IOWRT, 1},
{NULL, 0, NULL, _IOWRT+_IONBF, 2},
};
/*
* Ptr to end of buffers
*/
struct _iobuf *_lastbuf = { &_iob[_NFILE] };