#ifndef BISON_Y_TAB_H
# define BISON_Y_TAB_H

#ifndef YYSTYPE
typedef union {
	char *string;
} yystype;
# define YYSTYPE yystype
# define YYSTYPE_IS_TRIVIAL 1
#endif
# define	TYPEDEF	257
# define	EXTERN	258
# define	STATIC	259
# define	AUTO	260
# define	REGISTER	261
# define	VOID	262
# define	CHAR	263
# define	SHORT	264
# define	INT	265
# define	LONG	266
# define	FLOAT	267
# define	DOUBLE	268
# define	SIGNED	269
# define	UNSIGNED	270
# define	CONST	271
# define	VOLATILE	272
# define	STRUCT	273
# define	UNION	274
# define	ENUM	275
# define	ELLIPSIS	276
# define	IDENTIFIER	277
# define	NUMBER	278


extern YYSTYPE yylval;

#endif /* not BISON_Y_TAB_H */


syntax highlighted by Code2HTML, v. 0.9.1