parser.y

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