1
0
mirror of synced 2026-01-27 12:43:03 +00:00

now use C99 stdint.h and stdbool.h

This commit is contained in:
Eric Smith
2002-08-26 06:03:55 +00:00
parent e1ff187bde
commit be4804020a
13 changed files with 124 additions and 124 deletions

View File

@@ -1,6 +1,7 @@
%{
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include "type.h"
#include "semantics.h"
%}
@@ -186,7 +187,7 @@ pdf_file_attributes:
output_file_clause:
FILE_KEYWORD STRING { output_set_file ($2); }
pdf_file_attributes ';'
pdf_file_attributes ';' ;
label_clause:
LABEL ';' { page_label_t label = { NULL, '\0' }; output_set_page_label (label); }