diff options
author | Yann Ylavic <ylavic@apache.org> | 2014-12-08 21:06:24 +0100 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2014-12-08 21:06:24 +0100 |
commit | 8b77d7e81f9a2d62cfc0e98779d1b2e8527edd43 (patch) | |
tree | 5c5d79aef8e52317e95ca2763a24583d1752c52c /server/util_expr_parse.h | |
parent | util_expr: sync bison generated source files with (diff) | |
download | apache2-8b77d7e81f9a2d62cfc0e98779d1b2e8527edd43.tar.xz apache2-8b77d7e81f9a2d62cfc0e98779d1b2e8527edd43.zip |
Revert r1643900.
May someone with a bison version closer to the original one make this change.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1643901 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/util_expr_parse.h')
-rw-r--r-- | server/util_expr_parse.h | 37 |
1 files changed, 28 insertions, 9 deletions
diff --git a/server/util_expr_parse.h b/server/util_expr_parse.h index 8540ec6e2d..21b0ffba56 100644 --- a/server/util_expr_parse.h +++ b/server/util_expr_parse.h @@ -1,8 +1,8 @@ -/* A Bison parser, made by GNU Bison 2.5. */ +/* A Bison parser, made by GNU Bison 2.7.12-4996. */ /* Bison interface for Yacc-like parsers in C - Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. + Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -30,6 +30,15 @@ This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ +#ifndef YY_AP_EXPR_YY_UTIL_EXPR_PARSE_H_INCLUDED +# define YY_AP_EXPR_YY_UTIL_EXPR_PARSE_H_INCLUDED +/* Enabling traces. */ +#ifndef YYDEBUG +# define YYDEBUG 0 +#endif +#if YYDEBUG +extern int ap_expr_yydebug; +#endif /* Tokens. */ #ifndef YYTOKENTYPE @@ -77,12 +86,10 @@ #endif - #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { - -/* Line 2068 of yacc.c */ +/* Line 2053 of yacc.c */ #line 35 "util_expr_parse.y" char *cpVal; @@ -90,9 +97,8 @@ typedef union YYSTYPE int num; - -/* Line 2068 of yacc.c */ -#line 96 "util_expr_parse.h" +/* Line 2053 of yacc.c */ +#line 102 "util_expr_parse.h" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ @@ -100,5 +106,18 @@ typedef union YYSTYPE #endif +#ifdef YYPARSE_PARAM +#if defined __STDC__ || defined __cplusplus +int ap_expr_yyparse (void *YYPARSE_PARAM); +#else +int ap_expr_yyparse (); +#endif +#else /* ! YYPARSE_PARAM */ +#if defined __STDC__ || defined __cplusplus +int ap_expr_yyparse (ap_expr_parse_ctx_t *ctx); +#else +int ap_expr_yyparse (); +#endif +#endif /* ! YYPARSE_PARAM */ - +#endif /* !YY_AP_EXPR_YY_UTIL_EXPR_PARSE_H_INCLUDED */ |