]> git.saurik.com Git - bison.git/blobdiff - tests/calc.at
doc: mfcalc: demonstrate %printer.
[bison.git] / tests / calc.at
index f0e30ad36b495dee52a81e0cdcc6e80358a8bb2a..c50400836a5ad684ce0443db4643ac877a0aec2f 100644 (file)
@@ -207,6 +207,7 @@ extern FILE *input;]AT_SKEL_CC_IF([[
 
 %code
 {
+#include <assert.h>
 #include <stdlib.h>
 #include <string.h>
 #if HAVE_UNISTD_H
@@ -240,7 +241,7 @@ int yylex (]AT_LEX_FORMALS[);
    are stored in a union, from which objects with constructors are
    excluded in C++. */
 %initial-action {
-  @$.initialize (0);
+  @$.initialize ();
 }
 ])])[