~ubuntu-branches/ubuntu/precise/graphviz/precise-updates

« back to all changes in this revision

Viewing changes to lib/expr/y.tab.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-02-08 02:06:56 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080208020656-a3cbewe5ly6dpj0s
Tags: 2.16-3ubuntu1
* Merge with Debian; remaining changes:
  - Drop libttf-dev (libttf-dev is in universe) (LP: #174749).
  - Replace gs-common with ghostscript.
  - Build-depend on python-dev instead of python2.4-dev.
  - Build-depend on liblua50-dev instead of liblua5.1-0-dev.
  - Mention the correct python version for the python bindings in the
    package description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* A Bison parser, made by GNU Bison 2.1.  */
2
 
 
3
 
/* Skeleton parser for Yacc-like parsing with Bison,
4
 
   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 
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.
5
7
 
6
8
   This program is free software; you can redistribute it and/or modify
7
9
   it under the terms of the GNU General Public License as published by
18
20
   Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
21
   Boston, MA 02110-1301, USA.  */
20
22
 
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.  */
 
23
/* As a special exception, you may create a larger work that contains
 
24
   part or all of the Bison parser skeleton and distribute that work
 
25
   under terms of your choice, so long as that work isn't itself a
 
26
   parser generator using the skeleton or a modified version thereof
 
27
   as a parser skeleton.  Alternatively, if you modify or redistribute
 
28
   the parser skeleton itself, you may (at your option) remove this
 
29
   special exception, which will cause the skeleton and the resulting
 
30
   Bison output files to be licensed under the GNU General Public
 
31
   License without this special exception.
 
32
 
 
33
   This special exception was added by the Free Software Foundation in
 
34
   version 2.2 of Bison.  */
25
35
 
26
36
/* Tokens.  */
27
37
#ifndef YYTOKENTYPE
184
194
 
185
195
 
186
196
 
187
 
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
188
 
#line 37 "../../lib/expr/exparse.y"
189
 
typedef union YYSTYPE {
 
197
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
 
198
typedef union YYSTYPE
 
199
#line 45 "../../lib/expr/exparse.y"
 
200
{
190
201
        struct Exnode_s*expr;
191
202
        double          floating;
192
203
        struct Exref_s* reference;
196
207
        char*           string;
197
208
        void*           user;
198
209
        struct Exbuf_s* buffer;
199
 
} YYSTYPE;
200
 
/* Line 1447 of yacc.c.  */
201
 
#line 202 "y.tab.h"
 
210
}
 
211
/* Line 1489 of yacc.c.  */
 
212
#line 213 "y.tab.h"
 
213
        YYSTYPE;
202
214
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
203
215
# define YYSTYPE_IS_DECLARED 1
204
216
# define YYSTYPE_IS_TRIVIAL 1
206
218
 
207
219
extern YYSTYPE yylval;
208
220
 
209
 
 
210