You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
377 B

#ifndef YYSTYPE
#define YYSTYPE int
#endif
#ifndef YYLTYPE
typedef
struct yyltype
{
int timestamp;
int first_line;
int first_column;
int last_line;
int last_column;
char *text;
}
yyltype;
#define YYLTYPE yyltype
#endif
#define NUMBER 257
#define END 258
#define VAR 259
#define FUNC 260
#define ID 261
#define UNARY_MINUS 262