adapted to new ordering in FILE struct

This commit is contained in:
ceriel 1989-03-02 11:24:55 +00:00
parent bc1eb3116e
commit 3ab954e38c

View file

@ -2,15 +2,15 @@
#include <stdio.h>
struct _io_buf _stdin = {
0, 0, IO_READMODE , 0, 0, 0
0, IO_READMODE , 0, 0, 0, 0
};
struct _io_buf _stdout = {
1, 0, IO_WRITEMODE, 0, 0, 0
0, IO_WRITEMODE, 0, 0, 0, 1
};
struct _io_buf _stderr = {
2, 0, IO_WRITEMODE + IO_UNBUFF, 0, 0, 0
0, IO_WRITEMODE + IO_UNBUFF, 0, 0, 0, 2
};
struct _io_buf *_io_table[_NFILES] = {