binutils-gdb/binutils/sysinfo.h
2002-03-08 17:01:34 +00:00

22 lines
308 B
C

#ifndef BISON_Y_TAB_H
# define BISON_Y_TAB_H
#ifndef YYSTYPE
typedef union {
int i;
char *s;
} yystype;
# define YYSTYPE yystype
#endif
# define COND 257
# define REPEAT 258
# define TYPE 259
# define NAME 260
# define NUMBER 261
# define UNIT 262
extern YYSTYPE yylval;
#endif /* not BISON_Y_TAB_H */