]> git.saurik.com Git - bison.git/blobdiff - tests/headers.at
* lib/.cvsignore: Add charset.alias.
[bison.git] / tests / headers.at
index 4a4a72e3944685b2c35504b23e269e26613c1113..4168531c46ed9cb76c2521e920a0b1c0c76fdf6d 100644 (file)
@@ -94,9 +94,7 @@ AT_DATA_GRAMMAR([input.y],
 #include <stdio.h>
 #include <stdlib.h>
 
-int my_lex (void);
-
-int
+static int
 my_lex (void)
 {
   return EOF;
@@ -120,11 +118,7 @@ AT_DATA([caller.c],
 [[#include "input.h"
 YYLTYPE *my_llocp = &my_lloc;
 
-#ifndef YYPUSH_DECLS
 int my_parse (void);
-#else
-int my_lex (void);
-#endif
 
 int
 main (void)