[BACK]Return to skeleton.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / yacc

Diff for /src/usr.bin/yacc/skeleton.c between version 1.22 and 1.23

version 1.22, 2003/11/25 20:00:15 version 1.23, 2004/03/12 13:39:50
Line 397 
Line 397 
     "yyoverflow:",      "yyoverflow:",
     "    yyerror(\"yacc stack overflow\");",      "    yyerror(\"yacc stack overflow\");",
     "yyabort:",      "yyabort:",
       "    if (yyss)",
       "            free(yyss);",
       "    if (yyvs)",
       "            free(yyvs);",
       "    yyss = yyssp = NULL;",
       "    yyvs = yyvsp = NULL;",
       "    yystacksize = 0;",
     "    return (1);",      "    return (1);",
     "yyaccept:",      "yyaccept:",
       "    if (yyss)",
       "            free(yyss);",
       "    if (yyvs)",
       "            free(yyvs);",
       "    yyss = yyssp = NULL;",
       "    yyvs = yyvsp = NULL;",
       "    yystacksize = 0;",
     "    return (0);",      "    return (0);",
     "}",      "}",
     0      0

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23