at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git] / lib / stdio / data.c
blob3ca1585f69fd4350a03bfaa79741c1e8615f3002
1 /*
2 * data.c - this is the initialization for the standard streams
3 */
4 /* $Header$ */
6 #include <stdio.h>
8 struct __iobuf __stdin = {
9 0, 0, _IOREAD, 0,
10 (unsigned char *)NULL, (unsigned char *)NULL,
13 struct __iobuf __stdout = {
14 0, 1, _IOWRITE, 0,
15 (unsigned char *)NULL, (unsigned char *)NULL,
18 struct __iobuf __stderr = {
19 0, 2, _IOWRITE | _IOLBF, 0,
20 (unsigned char *)NULL, (unsigned char *)NULL,
23 FILE *__iotab[FOPEN_MAX] = {
24 &__stdin,
25 &__stdout,
26 &__stderr,