1987-03-31 10:45:53 +00:00
|
|
|
/* $Header$ */
|
1987-01-27 15:57:55 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
1987-02-05 20:54:27 +00:00
|
|
|
unsigned char _sobuf[BUFSIZ];
|
|
|
|
unsigned char _sibuf[BUFSIZ];
|
1987-01-27 15:57:55 +00:00
|
|
|
|
|
|
|
struct _io_buf _stdin = {
|
1987-02-05 20:54:27 +00:00
|
|
|
0, 0, IO_READMODE , _sibuf, _sibuf
|
1987-01-27 15:57:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _io_buf _stdout = {
|
|
|
|
1, 0, IO_WRITEMODE, 0, 0
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _io_buf _stderr = {
|
|
|
|
2, 0, IO_WRITEMODE + IO_UNBUFF, NULL, NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _io_buf *_io_table[_NFILES] = {
|
|
|
|
&_stdin,
|
|
|
|
&_stdout,
|
|
|
|
&_stderr,
|
|
|
|
0
|
|
|
|
};
|