adapted to new ordering in FILE struct
This commit is contained in:
parent
bc1eb3116e
commit
3ab954e38c
1 changed files with 3 additions and 3 deletions
|
@ -2,15 +2,15 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
struct _io_buf _stdin = {
|
struct _io_buf _stdin = {
|
||||||
0, 0, IO_READMODE , 0, 0, 0
|
0, IO_READMODE , 0, 0, 0, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _io_buf _stdout = {
|
struct _io_buf _stdout = {
|
||||||
1, 0, IO_WRITEMODE, 0, 0, 0
|
0, IO_WRITEMODE, 0, 0, 0, 1
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _io_buf _stderr = {
|
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] = {
|
struct _io_buf *_io_table[_NFILES] = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue