1.1 diff -r bfc6aaa089b0 -r 3d0be1c1c1b2 scanner.l 1.2 --- a/scanner.l Mon Aug 26 05:43:49 2002 +0000 1.3 +++ b/scanner.l Mon Aug 26 06:03:55 2002 +0000 1.4 @@ -1,14 +1,15 @@ 1.5 /* 1.6 -$Id: scanner.l,v 1.15 2002/01/02 02:17:24 eric Exp $ 1.7 +$Id: scanner.l,v 1.16 2002/08/25 22:02:31 eric Exp $ 1.8 */ 1.9 1.10 %option case-insensitive 1.11 %option noyywrap 1.12 1.13 %{ 1.14 +#include <stdbool.h> 1.15 +#include <stdint.h> 1.16 #include <stdio.h> 1.17 #include <string.h> 1.18 -#include "type.h" 1.19 #include "semantics.h" 1.20 #include "parser.tab.h" 1.21