From: Paul Eggert Date: Thu, 9 Jun 2005 20:44:28 +0000 (+0000) Subject: * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside extern "C" {}. X-Git-Tag: BISON-2_1~122 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/0925ebb4fa72edab483ba025aa2e998339117599 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside extern "C" {}. --- diff --git a/ChangeLog b/ChangeLog index 1e8215ef..309343cc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-06-09 Paul Eggert + + * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside + extern "C" {}. This fixes a problem reported by Paul Hilfinger, + which stems from the 2005-05-27 patch. + 2005-06-06 Paul Hilfinger * data/glr.c: Modify treatment of unused parameters to permit use diff --git a/data/yacc.c b/data/yacc.c index 802e53d8..6bf06d50 100644 --- a/data/yacc.c +++ b/data/yacc.c @@ -262,6 +262,9 @@ b4_syncline([@oline@], [@ofile@])[ # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM ((YYSIZE_T) -1) # endif +# ifdef __cplusplus +extern "C" { +# endif # ifndef YYMALLOC # define YYMALLOC malloc # if (! defined (malloc) && ! defined (YYINCLUDED_STDLIB_H) \ @@ -276,6 +279,9 @@ void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif +# ifdef __cplusplus +} +# endif # endif #endif /* ! defined (yyoverflow) || YYERROR_VERBOSE */ diff --git a/src/parse-gram.c b/src/parse-gram.c index c468acfc..a288edea 100644 --- a/src/parse-gram.c +++ b/src/parse-gram.c @@ -327,6 +327,9 @@ typedef struct YYLTYPE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM ((YYSIZE_T) -1) # endif +# ifdef __cplusplus +extern "C" { +# endif # ifndef YYMALLOC # define YYMALLOC malloc # if (! defined (malloc) && ! defined (YYINCLUDED_STDLIB_H) \ @@ -341,6 +344,9 @@ void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif +# ifdef __cplusplus +} +# endif # endif #endif /* ! defined (yyoverflow) || YYERROR_VERBOSE */ @@ -1165,8 +1171,8 @@ YYLTYPE yylloc; yylloc.start.line = yylloc.end.line = 1; yylloc.start.column = yylloc.end.column = 0; } -/* Line 863 of yacc.c. */ -#line 1170 "parse-gram.c" +/* Line 869 of yacc.c. */ +#line 1176 "parse-gram.c" yyvsp[0] = yylval; yylsp[0] = yylloc; @@ -1750,8 +1756,8 @@ yyreduce: default: break; } -/* Line 1059 of yacc.c. */ -#line 1755 "parse-gram.c" +/* Line 1065 of yacc.c. */ +#line 1761 "parse-gram.c" yyvsp -= yylen; yyssp -= yylen; diff --git a/src/parse-gram.h b/src/parse-gram.h index ff137898..fcf1ef15 100644 --- a/src/parse-gram.h +++ b/src/parse-gram.h @@ -143,7 +143,7 @@ typedef union YYSTYPE { assoc assoc; uniqstr uniqstr; } YYSTYPE; -/* Line 1382 of yacc.c. */ +/* Line 1388 of yacc.c. */ #line 148 "parse-gram.h" # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1