/* VRTGBL.C ** ** REV 1281.021 ** ** The Whitesmith's C compiler requires that all extern (or GLOBAL) ** variables be initialized once and only once somewhere in the program ** unit. This can be done in an assembly language module if desired ** but it has to be done somewhere. This is taken careof by using this ** file of GLOBALS and their intializers. VROOT.C is the only file ** where this file is referenced by means of the #include facility. */ GLOBAL struct rt ROOT[5] = { { 0, 0, NULL, 0, 0 }, { 1, 0, NULL, 0, 0 }, { 2, 0, NULL, 0, 0 }, { 3, 0, NULL, 0, 0 }, { 4, 0, NULL, 0, 0 } }; GLOBAL BOOL bug = NO; GLOBAL COUNT error = 0; GLOBAL COUNT err_index = 0; GLOBAL COUNT IOFLAG = NO;