blob: 97212640827bd6c9feaaba4744142608d66f3de9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#ifndef BISON_Y_TAB_H
# define BISON_Y_TAB_H
#ifndef YYSTYPE
typedef union {
int ival;
XrmQuark qval;
BoxPtr bval;
BoxParamsPtr pval;
GlueRec gval;
LayoutDirection lval;
ExprPtr eval;
Operator oval;
} LayYYstype;
# define YYSTYPE LayYYstype
# define YYSTYPE_IS_TRIVIAL 1
#endif
# define OC 257
# define CC 258
# define OA 259
# define CA 260
# define OP 261
# define CP 262
# define NAME 263
# define NUMBER 264
# define INFINITY 265
# define VERTICAL 266
# define HORIZONTAL 267
# define EQUAL 268
# define DOLLAR 269
# define PLUS 270
# define MINUS 271
# define TIMES 272
# define DIVIDE 273
# define PERCENTOF 274
# define PERCENT 275
# define WIDTH 276
# define HEIGHT 277
# define UMINUS 278
# define UPLUS 279
extern YYSTYPE LayYYlval;
#endif /* not BISON_Y_TAB_H */
|