home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 163_01 / cc5.c < prev    next >
Text File  |  1990-11-20  |  667b  |  32 lines

  1. /*
  2. ** Small-C Compiler Version 2.0
  3. **
  4. ** Portions Copyright 1982 J. E. Hendrix
  5. **
  6. ** Modified for 8088/PCDOS by D. R. Hicks
  7. **
  8. ** Part 5
  9. **
  10. ** This is a new Part.  The optimizer that was formerly in cc42.c has been
  11. ** expanded and made into a separate module.  This allows it to be separately
  12. ** compiled and allows the source to be manipulated separately.
  13. */
  14.  
  15. #define NOCCARGC /* (be sure to remove if [f]printf is used anywhere) */
  16.  
  17. /*
  18. ** external references in part 1
  19. */
  20. extern int
  21.   output;
  22.  
  23. /*
  24. ** external references in part 2
  25. */
  26. extern int
  27.   cout(), nl(), ol(), ot(), outstr(), streq();
  28.  
  29. #include "cc51.c"
  30. #include "cc52.c"
  31.  
  32.