1989-05-30 13:34:25 +00:00
|
|
|
/*
|
|
|
|
* data.c - this is the initialization for the standard streams
|
|
|
|
*/
|
|
|
|
/* $Header$ */
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
1989-12-18 15:04:14 +00:00
|
|
|
struct __iobuf __stdin = {
|
1989-05-30 13:34:25 +00:00
|
|
|
0, 0, _IOREAD, 0,
|
1990-04-09 15:38:02 +00:00
|
|
|
(unsigned char *)NULL, (unsigned char *)NULL,
|
1989-05-30 13:34:25 +00:00
|
|
|
};
|
|
|
|
|
1989-12-18 15:04:14 +00:00
|
|
|
struct __iobuf __stdout = {
|
|
|
|
0, 1, _IOWRITE, 0,
|
1990-04-09 15:38:02 +00:00
|
|
|
(unsigned char *)NULL, (unsigned char *)NULL,
|
1989-05-30 13:34:25 +00:00
|
|
|
};
|
|
|
|
|
1989-12-18 15:04:14 +00:00
|
|
|
struct __iobuf __stderr = {
|
|
|
|
0, 2, _IOWRITE | _IOLBF, 0,
|
1990-04-09 15:38:02 +00:00
|
|
|
(unsigned char *)NULL, (unsigned char *)NULL,
|
1989-05-30 13:34:25 +00:00
|
|
|
};
|
|
|
|
|
1989-12-18 15:04:14 +00:00
|
|
|
FILE *__iotab[FOPEN_MAX] = {
|
|
|
|
&__stdin,
|
|
|
|
&__stdout,
|
|
|
|
&__stderr,
|
1989-05-30 13:34:25 +00:00
|
|
|
0
|
|
|
|
};
|