]> git.saurik.com Git - bison.git/blobdiff - tests/actions.at
* lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
[bison.git] / tests / actions.at
index 79dee6fbedc545c20acb8440bb32f20c73e45978..e3d4ba2981255f8581a016603a4cb20c934c265b 100644 (file)
@@ -31,10 +31,12 @@ AT_SETUP([Mid-rule actions])
 
 AT_DATA([[input.y]],
 [[%{
-#include <stdio.h>
-#include <stdlib.h>
-static void yyerror (const char *msg);
-static int yylex (void);
+# include <stdio.h>
+# include <stdlib.h>
+  static void yyerror (const char *msg);
+  static int yylex (void);
+# define YYDEBUG         1
+# define YYERROR_VERBOSE 1
 %}
 %%
 exp:     { putchar ('0'); }