1178825Sdfr/* A Bison parser, made by GNU Bison 2.3.  */
2178825Sdfr
3178825Sdfr/* Skeleton interface for Bison's Yacc-like parsers in C
4178825Sdfr
5178825Sdfr   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
6178825Sdfr   Free Software Foundation, Inc.
7178825Sdfr
8178825Sdfr   This program is free software; you can redistribute it and/or modify
9178825Sdfr   it under the terms of the GNU General Public License as published by
10178825Sdfr   the Free Software Foundation; either version 2, or (at your option)
11178825Sdfr   any later version.
12178825Sdfr
13178825Sdfr   This program is distributed in the hope that it will be useful,
14178825Sdfr   but WITHOUT ANY WARRANTY; without even the implied warranty of
15178825Sdfr   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16178825Sdfr   GNU General Public License for more details.
17178825Sdfr
18178825Sdfr   You should have received a copy of the GNU General Public License
19178825Sdfr   along with this program; if not, write to the Free Software
20178825Sdfr   Foundation, Inc., 51 Franklin Street, Fifth Floor,
21178825Sdfr   Boston, MA 02110-1301, USA.  */
22178825Sdfr
23178825Sdfr/* As a special exception, you may create a larger work that contains
24178825Sdfr   part or all of the Bison parser skeleton and distribute that work
25178825Sdfr   under terms of your choice, so long as that work isn't itself a
26178825Sdfr   parser generator using the skeleton or a modified version thereof
27178825Sdfr   as a parser skeleton.  Alternatively, if you modify or redistribute
28178825Sdfr   the parser skeleton itself, you may (at your option) remove this
29178825Sdfr   special exception, which will cause the skeleton and the resulting
30178825Sdfr   Bison output files to be licensed under the GNU General Public
31178825Sdfr   License without this special exception.
32178825Sdfr
33178825Sdfr   This special exception was added by the Free Software Foundation in
34178825Sdfr   version 2.2 of Bison.  */
35178825Sdfr
36178825Sdfr/* Tokens.  */
37178825Sdfr#ifndef YYTOKENTYPE
38178825Sdfr# define YYTOKENTYPE
39178825Sdfr   /* Put the tokens into the symbol table, so that GDB and other debuggers
40178825Sdfr      know about them.  */
41178825Sdfr   enum yytokentype {
42178825Sdfr     LITERAL = 258,
43178825Sdfr     STRING = 259
44178825Sdfr   };
45178825Sdfr#endif
46178825Sdfr/* Tokens.  */
47178825Sdfr#define LITERAL 258
48178825Sdfr#define STRING 259
49178825Sdfr
50178825Sdfr
51178825Sdfr
52178825Sdfr
53178825Sdfr#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
54178825Sdfrtypedef union YYSTYPE
55233294Sstas#line 57 "slc-gram.y"
56178825Sdfr{
57178825Sdfr	char *string;
58178825Sdfr	struct assignment *assignment;
59178825Sdfr}
60178825Sdfr/* Line 1529 of yacc.c.  */
61178825Sdfr#line 62 "slc-gram.h"
62178825Sdfr	YYSTYPE;
63178825Sdfr# define yystype YYSTYPE /* obsolescent; will be withdrawn */
64178825Sdfr# define YYSTYPE_IS_DECLARED 1
65178825Sdfr# define YYSTYPE_IS_TRIVIAL 1
66178825Sdfr#endif
67178825Sdfr
68178825Sdfrextern YYSTYPE yylval;
69178825Sdfr
70