~ubuntu-branches/ubuntu/oneiric/wackamole/oneiric

« back to all changes in this revision

Viewing changes to y.tab.h

  • Committer: Bazaar Package Importer
  • Author(s): Frederik Schüler
  • Date: 2006-04-24 17:15:58 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060424171558-kiknnqw4zjvqx4ju
Tags: 2.1.1-3
Add bison and autotools-dev build dependencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* A Bison parser, made by GNU Bison 1.875a.  */
2
 
 
3
 
/* Skeleton parser for Yacc-like parsing with Bison,
4
 
   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
5
 
 
6
 
   This program is free software; you can redistribute it and/or modify
7
 
   it under the terms of the GNU General Public License as published by
8
 
   the Free Software Foundation; either version 2, or (at your option)
9
 
   any later version.
10
 
 
11
 
   This program is distributed in the hope that it will be useful,
12
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
   GNU General Public License for more details.
15
 
 
16
 
   You should have received a copy of the GNU General Public License
17
 
   along with this program; if not, write to the Free Software
18
 
   Foundation, Inc., 59 Temple Place - Suite 330,
19
 
   Boston, MA 02111-1307, USA.  */
20
 
 
21
 
/* As a special exception, when this file is copied by Bison into a
22
 
   Bison output file, you may use that output file without restriction.
23
 
   This special exception was added by the Free Software Foundation
24
 
   in version 1.24 of Bison.  */
25
 
 
26
 
/* Tokens.  */
27
 
#ifndef YYTOKENTYPE
28
 
# define YYTOKENTYPE
29
 
   /* Put the tokens into the symbol table, so that GDB and other debuggers
30
 
      know about them.  */
31
 
   enum yytokentype {
32
 
     W_SPREAD = 258,
33
 
     W_SPREADRETRYINTERVAL = 259,
34
 
     W_LOG = 260,
35
 
     W_GROUP = 261,
36
 
     W_VIFS = 262,
37
 
     W_IPADDR = 263,
38
 
     W_PREFER = 264,
39
 
     W_NOTIFY = 265,
40
 
     W_NONE = 266,
41
 
     W_ARPCACHE = 267,
42
 
     W_AQPR = 268,
43
 
     W_ALL = 269,
44
 
     W_THROTTLE = 270,
45
 
     W_OPENBRACE = 271,
46
 
     W_CLOSEBRACE = 272,
47
 
     W_EQUALS = 273,
48
 
     W_STRING = 274,
49
 
     W_MATURE = 275,
50
 
     W_TIMEINTERVAL = 276,
51
 
     W_BALANCE = 277,
52
 
     W_NUMBER = 278,
53
 
     W_INTERVAL = 279,
54
 
     W_CONTROL = 280
55
 
   };
56
 
#endif
57
 
#define W_SPREAD 258
58
 
#define W_SPREADRETRYINTERVAL 259
59
 
#define W_LOG 260
60
 
#define W_GROUP 261
61
 
#define W_VIFS 262
62
 
#define W_IPADDR 263
63
 
#define W_PREFER 264
64
 
#define W_NOTIFY 265
65
 
#define W_NONE 266
66
 
#define W_ARPCACHE 267
67
 
#define W_AQPR 268
68
 
#define W_ALL 269
69
 
#define W_THROTTLE 270
70
 
#define W_OPENBRACE 271
71
 
#define W_CLOSEBRACE 272
72
 
#define W_EQUALS 273
73
 
#define W_STRING 274
74
 
#define W_MATURE 275
75
 
#define W_TIMEINTERVAL 276
76
 
#define W_BALANCE 277
77
 
#define W_NUMBER 278
78
 
#define W_INTERVAL 279
79
 
#define W_CONTROL 280
80
 
 
81
 
 
82
 
 
83
 
 
84
 
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
85
 
typedef int YYSTYPE;
86
 
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
87
 
# define YYSTYPE_IS_DECLARED 1
88
 
# define YYSTYPE_IS_TRIVIAL 1
89
 
#endif
90
 
 
91
 
extern YYSTYPE yylval;
92
 
 
93
 
 
94