home *** CD-ROM | disk | FTP | other *** search
- /* btree system program */
- #include <stdio.h>
- #include <btglobal.h>
-
- btsys ();
-
- main ()
- /* sets up shop */
- {
-
- /* this is executed only to setup residence in m/c */
-
- /* initialize control block */
- int i;
- for (i = 1; i<= MAXFIL; ++i)
- btfilar[i].handle = NULL;
- intrinit (btsys, STACKS, VECNO);
- bdos (SETUP, PARAS);
-
- }