Fixed _iob bug

svn path=/trunk/; revision=1574
This commit is contained in:
Eric Kohl 2001-01-27 20:56:44 +00:00
parent dc0568827a
commit 5786d70e39

View file

@ -3,13 +3,11 @@
//#include <crtdll/local.h> //#include <crtdll/local.h>
#include <crtdll/internal/file.h> #include <crtdll/internal/file.h>
extern FILE _crtdll_iob[5];
static __file_rec __initial_file_rec = { static __file_rec __initial_file_rec = {
0, 0,
5, 5,
{ &_crtdll_iob[0], &_crtdll_iob[1], &_crtdll_iob[2], { &_iob[0], &_iob[1], &_iob[2], &_iob[3], &_iob[4] }
&_crtdll_iob[3], &_crtdll_iob[4] }
}; };
__file_rec *__file_rec_list = &__initial_file_rec; __file_rec *__file_rec_list = &__initial_file_rec;