* added compilers lcc and bcc (linux86)
[mascara-docs.git] / compilers / linux86-0.16.17 / bcc / bcc-cc1.c
blob00557cdb6c27d8023142fbe5e2c21f99a5fe23c3
1 /* bcc-cc1.c - "pass 1" for bcc */
3 /* Copyright (C) 1992 Bruce Evans */
5 #include "bcc.h"
7 PUBLIC int main(argc, argv)
8 int argc;
9 char **argv;
11 debug(1, "Start");
12 growheap(0); /* init order is important */
13 syminit();
14 etreeinit();
15 #ifdef BUILTIN_CPP
16 ifinit();
17 predefine();
18 #endif
19 openio(argc, argv);
20 codeinit();
21 typeinit();
22 program();
23 finishup();
25 /* NOTREACHED */
26 return 0;