home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21src.lzh / CC4.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-08  |  640 b   |  45 lines

  1.  
  2. /*
  3. ** Small-C Compiler Version 2.1
  4. **
  5. ** Copyright 1982, 1983 J. E. Hendrix
  6. ** 
  7. ** This version upgraded from 2.0 by Earl Boebert
  8. **
  9. ** Part 4
  10. */
  11. #include stdio.h
  12. #include cc.def
  13.  
  14. /*
  15. ** external references in part 1
  16. */
  17. extern char
  18.  *cptr,
  19.  
  20. #ifdef DYNAMIC  /*error in the Handbook*/
  21.  
  22.  *macn,
  23.  *symtab,                                 /*37*/
  24.  
  25. #else
  26.  
  27.  macn[MACNSIZE],
  28.  symtab[SYMTBSZ],
  29.  
  30. #endif     /*DYNAMIC*/
  31.  
  32. #ifdef OPTIMIZE
  33.  
  34.  optimize,
  35.  
  36. #endif /* OPTIMIZE */
  37.  
  38.  *stagenext, ssname[NAMESIZE];
  39.  
  40. extern int
  41.   beglab,  csp, output;
  42.  
  43. #include cc41.c
  44. #include cc42.c
  45.