Set SYS_BASHRC macro
[product/upstream/bash.git] / y.tab.h
1 #define IF 257
2 #define THEN 258
3 #define ELSE 259
4 #define ELIF 260
5 #define FI 261
6 #define CASE 262
7 #define ESAC 263
8 #define FOR 264
9 #define SELECT 265
10 #define WHILE 266
11 #define UNTIL 267
12 #define DO 268
13 #define DONE 269
14 #define FUNCTION 270
15 #define COND_START 271
16 #define COND_END 272
17 #define COND_ERROR 273
18 #define IN 274
19 #define BANG 275
20 #define TIME 276
21 #define TIMEOPT 277
22 #define WORD 278
23 #define ASSIGNMENT_WORD 279
24 #define NUMBER 280
25 #define ARITH_CMD 281
26 #define ARITH_FOR_EXPRS 282
27 #define COND_CMD 283
28 #define AND_AND 284
29 #define OR_OR 285
30 #define GREATER_GREATER 286
31 #define LESS_LESS 287
32 #define LESS_AND 288
33 #define LESS_LESS_LESS 289
34 #define GREATER_AND 290
35 #define SEMI_SEMI 291
36 #define LESS_LESS_MINUS 292
37 #define AND_GREATER 293
38 #define LESS_GREATER 294
39 #define GREATER_BAR 295
40 #define yacc_EOF 296
41 #ifdef YYSTYPE
42 #undef  YYSTYPE_IS_DECLARED
43 #define YYSTYPE_IS_DECLARED 1
44 #endif
45 #ifndef YYSTYPE_IS_DECLARED
46 #define YYSTYPE_IS_DECLARED 1
47 typedef union {
48   WORD_DESC *word;              /* the word that we read. */
49   int number;                   /* the number that we read. */
50   WORD_LIST *word_list;
51   COMMAND *command;
52   REDIRECT *redirect;
53   ELEMENT element;
54   PATTERN_LIST *pattern;
55 } YYSTYPE;
56 #endif /* !YYSTYPE_IS_DECLARED */
57 extern YYSTYPE yylval;