/* A Bison parser, made by GNU Bison 2.3. */12/* Skeleton interface for Bison's Yacc-like parsers in C34Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 20065Free Software Foundation, Inc.67This program is free software; you can redistribute it and/or modify8it under the terms of the GNU General Public License as published by9the Free Software Foundation; either version 2, or (at your option)10any later version.1112This program is distributed in the hope that it will be useful,13but WITHOUT ANY WARRANTY; without even the implied warranty of14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15GNU General Public License for more details.1617You should have received a copy of the GNU General Public License18along with this program; if not, write to the Free Software19Foundation, Inc., 51 Franklin Street, Fifth Floor,20Boston, MA 02110-1301, USA. */2122/* As a special exception, you may create a larger work that contains23part or all of the Bison parser skeleton and distribute that work24under terms of your choice, so long as that work isn't itself a25parser generator using the skeleton or a modified version thereof26as a parser skeleton. Alternatively, if you modify or redistribute27the parser skeleton itself, you may (at your option) remove this28special exception, which will cause the skeleton and the resulting29Bison output files to be licensed under the GNU General Public30License without this special exception.3132This special exception was added by the Free Software Foundation in33version 2.2 of Bison. */3435/* Tokens. */36#ifndef YYTOKENTYPE37# define YYTOKENTYPE38/* Put the tokens into the symbol table, so that GDB and other debuggers39know about them. */40enum yytokentype {41LITERAL = 258,42STRING = 25943};44#endif45/* Tokens. */46#define LITERAL 25847#define STRING 2594849505152#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED53typedef union YYSTYPE54#line 57 "slc-gram.y"55{56char *string;57struct assignment *assignment;58}59/* Line 1529 of yacc.c. */60#line 62 "slc-gram.h"61YYSTYPE;62# define yystype YYSTYPE /* obsolescent; will be withdrawn */63# define YYSTYPE_IS_DECLARED 164# define YYSTYPE_IS_TRIVIAL 165#endif6667extern YYSTYPE yylval;68697071