r23799: updated old Franklin Street FSF addresses to new URL
[samba.git] / source4 / heimdal / lib / com_err / parse.h
1 /* A Bison parser, made by GNU Bison 2.3.  */
2
3 /* Skeleton interface for Bison's Yacc-like parsers in C
4
5    Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
6    Free Software Foundation, Inc.
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2, or (at your option)
11    any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, see <http://www.gnu.org/licenses/>.  */
20
21 /* As a special exception, you may create a larger work that contains
22    part or all of the Bison parser skeleton and distribute that work
23    under terms of your choice, so long as that work isn't itself a
24    parser generator using the skeleton or a modified version thereof
25    as a parser skeleton.  Alternatively, if you modify or redistribute
26    the parser skeleton itself, you may (at your option) remove this
27    special exception, which will cause the skeleton and the resulting
28    Bison output files to be licensed under the GNU General Public
29    License without this special exception.
30
31    This special exception was added by the Free Software Foundation in
32    version 2.2 of Bison.  */
33
34 /* Tokens.  */
35 #ifndef YYTOKENTYPE
36 # define YYTOKENTYPE
37    /* Put the tokens into the symbol table, so that GDB and other debuggers
38       know about them.  */
39    enum yytokentype {
40      ET = 258,
41      INDEX = 259,
42      PREFIX = 260,
43      EC = 261,
44      ID = 262,
45      END = 263,
46      STRING = 264,
47      NUMBER = 265
48    };
49 #endif
50 /* Tokens.  */
51 #define ET 258
52 #define INDEX 259
53 #define PREFIX 260
54 #define EC 261
55 #define ID 262
56 #define END 263
57 #define STRING 264
58 #define NUMBER 265
59
60
61
62
63 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
64 typedef union YYSTYPE
65 #line 53 "parse.y"
66 {
67   char *string;
68   int number;
69 }
70 /* Line 1489 of yacc.c.  */
71 #line 74 "parse.h"
72         YYSTYPE;
73 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
74 # define YYSTYPE_IS_DECLARED 1
75 # define YYSTYPE_IS_TRIVIAL 1
76 #endif
77
78 extern YYSTYPE yylval;
79