~ubuntu-branches/ubuntu/breezy/gettext/breezy

« back to all changes in this revision

Viewing changes to gettext-tools/src/po-gram-gen.h

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2004-03-14 17:40:02 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040314174002-p1ad5ldve1hqzhye
Tags: 0.14.1-2
* Added libexpat1-dev to Build-Depends, for glade support.
* Added libc0.1-dev to Build-Depends, for GNU/kFreeBSD.
* Removed special-casing of knetbsd-gnu in debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef BISON_Y_TAB_H
 
2
# define BISON_Y_TAB_H
 
3
 
 
4
#ifndef YYSTYPE
 
5
typedef 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
 
 
27
extern YYSTYPE yylval;
 
28
 
 
29
#endif /* not BISON_Y_TAB_H */