repo.or.cz
/
mascara-docs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* added compilers lcc and bcc (linux86)
[mascara-docs.git]
/
compilers
/
linux86-0.16.17
/
bcc
/
bcc-cc1.c
blob
00557cdb6c27d8023142fbe5e2c21f99a5fe23c3
1
/* bcc-cc1.c - "pass 1" for bcc */
2
3
/* Copyright (C) 1992 Bruce Evans */
4
5
#include
"bcc.h"
6
7
PUBLIC
int
main
(
argc
,
argv
)
8
int
argc
;
9
char
**
argv
;
10
{
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
();
24
25
/* NOTREACHED */
26
return
0
;
27
}