1.1 diff -r bfc6aaa089b0 -r 3d0be1c1c1b2 parser.y 1.2 --- a/parser.y Mon Aug 26 05:43:49 2002 +0000 1.3 +++ b/parser.y Mon Aug 26 06:03:55 2002 +0000 1.4 @@ -1,6 +1,7 @@ 1.5 %{ 1.6 + #include <stdbool.h> 1.7 + #include <stdint.h> 1.8 #include <stdio.h> 1.9 - #include "type.h" 1.10 #include "semantics.h" 1.11 %} 1.12 1.13 @@ -186,7 +187,7 @@ 1.14 1.15 output_file_clause: 1.16 FILE_KEYWORD STRING { output_set_file ($2); } 1.17 - pdf_file_attributes ';' 1.18 + pdf_file_attributes ';' ; 1.19 1.20 label_clause: 1.21 LABEL ';' { page_label_t label = { NULL, '\0' }; output_set_page_label (label); }