home *** CD-ROM | disk | FTP | other *** search
-
- /*
- ** Small-C Compiler Version 2.1
- **
- ** Copyright 1982, 1983 J. E. Hendrix
- **
- ** This version upgraded from 2.0 by Earl Boebert
- **
- ** Part 3
- */
- #include stdio.h
- #include cc.def
-
- /*
- ** external references in part 1
- */
- extern char
-
- #ifdef DYNAMIC
-
- *stage,
- *litq,
-
- #else /* DYNAMIC */
-
- stage[STAGESIZE],
- litq[LITABSZ],
-
- #endif /* DYNAMIC */
-
- *glbptr, *lptr, ssname[NAMESIZE], quote[2], *stagenext;
-
- extern int
- ch, csp, litlab, litptr, nch, op[16], op2[16],
- oper, opindex, opsize;
-
- #include cc31.c
- #include cc32.c
- #include cc33.c