home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / historic / v92.tgz / v92.tar / v92 / src / iconc / clex.c < prev    next >
C/C++ Source or Header  |  1996-03-22  |  363b  |  20 lines

  1. /*
  2.  * clex.c -- the lexical analyzer for iconc.
  3.  */
  4. #define Iconc
  5.  
  6. #include "::h:gsupport.h"
  7. #include "::h:lexdef.h"
  8. #include "ctrans.h"
  9. #include "ctoken.h"
  10. #include "ctree.h"
  11. #include "csym.h"
  12. #include "ccode.h"
  13. #include "cproto.h"
  14. #include <ctype.h>
  15.  
  16. #include "::h:parserr.h"
  17. #include "::common:lextab.h"
  18. #include "::common:yylex.h"
  19. #include "::common:error.h"
  20.