1 #ifndef BISON_Y_TAB_H 2 # define BISON_Y_TAB_H 3 4 #ifndef YYSTYPE 5 typedef union 6 { 7 char *string; 8 struct string_list *list; 9 } yystype; 10 # define YYSTYPE yystype 11 # define YYSTYPE_IS_TRIVIAL 1 12 #endif 13 # define CHECK 257 14 # define CODESTART 258 15 # define COPYRIGHT 259 16 # define CUSTOM 260 17 # define DATE 261 18 # define DEBUG 262 19 # define DESCRIPTION 263 20 # define EXIT 264 21 # define EXPORT 265 22 # define FLAG_ON 266 23 # define FLAG_OFF 267 24 # define FULLMAP 268 25 # define HELP 269 26 # define IMPORT 270 27 # define INPUT 271 28 # define MAP 272 29 # define MESSAGES 273 30 # define MODULE 274 31 # define MULTIPLE 275 32 # define OS_DOMAIN 276 33 # define OUTPUT 277 34 # define PSEUDOPREEMPTION 278 35 # define REENTRANT 279 36 # define SCREENNAME 280 37 # define SHARELIB 281 38 # define STACK 282 39 # define START 283 40 # define SYNCHRONIZE 284 41 # define THREADNAME 285 42 # define TYPE 286 43 # define VERBOSE 287 44 # define VERSIONK 288 45 # define XDCDATA 289 46 # define STRING 290 47 # define QUOTED_STRING 291 48 49 50 extern YYSTYPE yylval; 51 52 #endif /* not BISON_Y_TAB_H */ 53