~ubuntu-branches/ubuntu/trusty/gstreamer1.0/trusty-proposed

« back to all changes in this revision

Viewing changes to gst/parse/grammar.tab.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2012-10-25 13:23:04 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20121025132304-d4h5101bepls2o8n
Tags: 1.0.2-1
New upstream stable release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* A Bison parser, made by GNU Bison 2.5.  */
 
1
/* A Bison parser, made by GNU Bison 2.6.2.  */
2
2
 
3
3
/* Bison interface for Yacc-like parsers in C
4
4
   
5
 
      Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
 
5
      Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc.
6
6
   
7
7
   This program is free software: you can redistribute it and/or modify
8
8
   it under the terms of the GNU General Public License as published by
30
30
   This special exception was added by the Free Software Foundation in
31
31
   version 2.2 of Bison.  */
32
32
 
 
33
#ifndef PRIV_GST_PARSE_YY_GRAMMAR_TAB_H
 
34
# define PRIV_GST_PARSE_YY_GRAMMAR_TAB_H
 
35
/* Enabling traces.  */
 
36
#ifndef YYDEBUG
 
37
# define YYDEBUG 0
 
38
#endif
 
39
#if YYDEBUG
 
40
extern int priv_gst_parse_yydebug;
 
41
#endif
33
42
 
34
43
/* Tokens.  */
35
44
#ifndef YYTOKENTYPE
48
57
#endif
49
58
 
50
59
 
51
 
 
52
60
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
53
61
typedef union YYSTYPE
54
62
{
55
 
 
56
 
/* Line 2068 of yacc.c  */
 
63
/* Line 2049 of yacc.c  */
57
64
#line 632 "./grammar.y"
58
65
 
59
66
    gchar *s;
64
71
    graph_t *g;
65
72
 
66
73
 
67
 
 
68
 
/* Line 2068 of yacc.c  */
69
 
#line 70 "grammar.tab.h"
 
74
/* Line 2049 of yacc.c  */
 
75
#line 76 "grammar.tab.h"
70
76
} YYSTYPE;
71
77
# define YYSTYPE_IS_TRIVIAL 1
72
78
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
74
80
#endif
75
81
 
76
82
 
77
 
 
78
 
 
 
83
#ifdef YYPARSE_PARAM
 
84
#if defined __STDC__ || defined __cplusplus
 
85
int priv_gst_parse_yyparse (void *YYPARSE_PARAM);
 
86
#else
 
87
int priv_gst_parse_yyparse ();
 
88
#endif
 
89
#else /* ! YYPARSE_PARAM */
 
90
#if defined __STDC__ || defined __cplusplus
 
91
int priv_gst_parse_yyparse (void *scanner, graph_t *graph);
 
92
#else
 
93
int priv_gst_parse_yyparse ();
 
94
#endif
 
95
#endif /* ! YYPARSE_PARAM */
 
96
 
 
97
#endif /* !PRIV_GST_PARSE_YY_GRAMMAR_TAB_H  */