#ifndef BISON_NASL_GRAMMAR_TAB_H # define BISON_NASL_GRAMMAR_TAB_H #ifndef YYSTYPE typedef union { int num; char *str; struct asciiz { char *val; int len; } data; tree_cell *node; } yystype; # define YYSTYPE yystype # define YYSTYPE_IS_TRIVIAL 1 #endif # define IF 257 # define ELSE 258 # define EQ 259 # define NEQ 260 # define SUPEQ 261 # define INFEQ 262 # define OR 263 # define AND 264 # define MATCH 265 # define NOMATCH 266 # define REP 267 # define FOR 268 # define REPEAT 269 # define UNTIL 270 # define FOREACH 271 # define WHILE 272 # define BREAK 273 # define CONTINUE 274 # define FUNCTION 275 # define RETURN 276 # define INCLUDE 277 # define LOCAL 278 # define GLOBAL 279 # define PLUS_PLUS 280 # define MINUS_MINUS 281 # define L_SHIFT 282 # define R_SHIFT 283 # define R_USHIFT 284 # define EXPO 285 # define PLUS_EQ 286 # define MINUS_EQ 287 # define MULT_EQ 288 # define DIV_EQ 289 # define MODULO_EQ 290 # define L_SHIFT_EQ 291 # define R_SHIFT_EQ 292 # define R_USHIFT_EQ 293 # define RE_MATCH 294 # define RE_NOMATCH 295 # define ARROW 296 # define IDENT 297 # define STRING1 298 # define STRING2 299 # define INTEGER 300 # define NOT 301 # define UMINUS 302 # define BIT_NOT 303 #endif /* not BISON_NASL_GRAMMAR_TAB_H */