blob: dd694b5de244799ab807f3277876780c38996390 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef fooparser_cpp_h
#define fooparser_cpp_h
#ifndef YYSTYPE
#define YYSTYPE int
#endif
#define VAR 257
#define STRING 258
#define NUMBER 259
#define UNDEF 260
#define POSTPIPE 261
#define QUOTED 262
extern YYSTYPE tdeprint_foomatic2lval;
#endif
|