~ubuntu-branches/ubuntu/hoary/binutils/hoary

« back to all changes in this revision

Viewing changes to binutils/defparse.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2005-03-18 13:07:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050318130752-j4i37zgqclj53b94
Tags: 2.15-5ubuntu2
debian/rules: Call pkgstriptranslations if present (the package does not
use debhelper, thus it does not happen automatically).

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
  char *id;
 
7
  int number;
 
8
} yystype;
 
9
# define YYSTYPE yystype
 
10
# define YYSTYPE_IS_TRIVIAL 1
 
11
#endif
 
12
# define        NAME    257
 
13
# define        LIBRARY 258
 
14
# define        DESCRIPTION     259
 
15
# define        STACKSIZE       260
 
16
# define        HEAPSIZE        261
 
17
# define        CODE    262
 
18
# define        DATA    263
 
19
# define        SECTIONS        264
 
20
# define        EXPORTS 265
 
21
# define        IMPORTS 266
 
22
# define        VERSIONK        267
 
23
# define        BASE    268
 
24
# define        CONSTANT        269
 
25
# define        READ    270
 
26
# define        WRITE   271
 
27
# define        EXECUTE 272
 
28
# define        SHARED  273
 
29
# define        NONSHARED       274
 
30
# define        NONAME  275
 
31
# define        PRIVATE 276
 
32
# define        SINGLE  277
 
33
# define        MULTIPLE        278
 
34
# define        INITINSTANCE    279
 
35
# define        INITGLOBAL      280
 
36
# define        TERMINSTANCE    281
 
37
# define        TERMGLOBAL      282
 
38
# define        ID      283
 
39
# define        NUMBER  284
 
40
 
 
41
 
 
42
extern YYSTYPE yylval;
 
43
 
 
44
#endif /* not BISON_Y_TAB_H */