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 4
- */
- #include stdio.h
- #include cc.def
-
- /*
- ** external references in part 1
- */
- extern char
- *cptr,
-
- #ifdef DYNAMIC /*error in the Handbook*/
-
- *macn,
- *symtab, /*37*/
-
- #else
-
- macn[MACNSIZE],
- symtab[SYMTBSZ],
-
- #endif /*DYNAMIC*/
-
- #ifdef OPTIMIZE
-
- optimize,
-
- #endif /* OPTIMIZE */
-
- *stagenext, ssname[NAMESIZE];
-
- extern int
- beglab, csp, output;
-
- #include cc41.c
- #include cc42.c