home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / historic / v941.tgz / icon.v941src.tar / icon.v941src / src / icont / tlex.c < prev    next >
C/C++ Source or Header  |  2000-07-29  |  460b  |  25 lines

  1. /*
  2.  * tlex.c -- the lexical analyzer for icont.
  3.  */
  4.  
  5. #include "../h/gsupport.h"
  6. #undef T_Real
  7. #undef T_String
  8. #undef T_Cset
  9. #include "../h/lexdef.h"
  10. #include "ttoken.h"
  11. #include "tree.h"
  12. #include "tproto.h"
  13.  
  14. #if MACINTOSH
  15.    #if MPW
  16.       #include <CursorCtl.h>
  17.       #define CURSORINTERVAL 100
  18.    #endif                /* MPW */
  19. #endif                    /* MACINTOSH */
  20.  
  21. #include "../h/parserr.h"
  22. #include "../common/lextab.h"
  23. #include "../common/yylex.h"
  24. #include "../common/error.h"
  25.