1#ifndef BISON_Y_TAB_H
2# define BISON_Y_TAB_H
3
4#ifndef YYSTYPE
5typedef union
6{
7  struct { char *string; lex_pos_ty pos; bool obsolete; } string;
8  struct { string_list_ty stringlist; lex_pos_ty pos; bool obsolete; } stringlist;
9  struct { long number; lex_pos_ty pos; bool obsolete; } number;
10  struct { lex_pos_ty pos; bool obsolete; } pos;
11  struct { struct msgstr_def rhs; lex_pos_ty pos; bool obsolete; } rhs;
12} yystype;
13# define YYSTYPE yystype
14# define YYSTYPE_IS_TRIVIAL 1
15#endif
16# define	COMMENT	257
17# define	DOMAIN	258
18# define	JUNK	259
19# define	MSGID	260
20# define	MSGID_PLURAL	261
21# define	MSGSTR	262
22# define	NAME	263
23# define	NUMBER	264
24# define	STRING	265
25
26
27extern YYSTYPE yylval;
28
29#endif /* not BISON_Y_TAB_H */
30