home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 221_01 / cc9.c < prev    next >
Text File  |  1979-12-31  |  768b  |  42 lines

  1. /*
  2. HEADER:        Small-C source part 9;
  3. TITLE:        Small-C Compiler for 6809 FLEX system;
  4. VERSION:    2.3;
  5.  
  6. DESCRIPTION:    "Small-C Compiler which produces 6809 assembler output."
  7. KEYWORDS:    ;
  8. SYSTEM:        6809 FLEX;
  9. FILENAME:    CC9.C;
  10. WARNINGS:    "Requires TSC relocatable assembler, library generater and
  11.                 linking loader."
  12.  
  13. SEE-ALSO:    ;
  14. AUTHORS:    Dieter H. Flunkert;
  15. COMPILERS:    VAX VMS C compiler;
  16. */
  17. #include STDIO.H
  18. #ifdef VMS
  19. #include "ccdef.c"
  20. #else
  21. #include CCDEF.C
  22. #endif
  23.  
  24. /*
  25. **  external function declarations
  26. */
  27. extern int cout(),
  28.   nl(),
  29.   ol(), ot(), outstr(),
  30.   streq();
  31.  
  32. /*
  33. **  external variable declaration
  34. */
  35. extern int optimize, output;
  36.  
  37. #ifdef VMS
  38. #include "cc91.c"
  39. #else
  40. #include CC91.C
  41. #endif
  42.