#ifndef BISON_Y_TAB_H
# define BISON_Y_TAB_H

#ifndef YYSTYPE
typedef union {
	char *string;
	struct {
		char *left;
		char *right;
		char *type;
	} halves;
} yystype;
# define YYSTYPE yystype
# define YYSTYPE_IS_TRIVIAL 1
#endif
# define	IDENTIFIER	257
# define	NUMBER	258
# define	ELLIPSIS	259
# define	ARRAY	260
# define	AS	261
# define	CAST	262
# define	DECLARE	263
# define	FUNCTION	264
# define	INTO	265
# define	OF	266
# define	POINTER	267
# define	RETURNING	268
# define	TO	269
# define	CHAR	270
# define	CONST	271
# define	VOLATILE	272
# define	DOUBLE	273
# define	ENUM	274
# define	FLOAT	275
# define	INT	276
# define	LONG	277
# define	SHORT	278
# define	SIGNED	279
# define	STRUCT	280
# define	UNION	281
# define	UNSIGNED	282
# define	VOID	283
# define	TYPEDEF	284
# define	AUTO	285
# define	EXTERN	286
# define	REGISTER	287
# define	STATIC	288


extern YYSTYPE yylval;

#endif /* not BISON_Y_TAB_H */


syntax highlighted by Code2HTML, v. 0.9.1