mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-23 13:21:43 +08:00
14 lines
176 B
C
14 lines
176 B
C
typedef union {
|
|
int i;
|
|
char *s;
|
|
} YYSTYPE;
|
|
#define COND 257
|
|
#define REPEAT 258
|
|
#define TYPE 259
|
|
#define NAME 260
|
|
#define NUMBER 261
|
|
#define UNIT 262
|
|
|
|
|
|
extern YYSTYPE yylval;
|