]> git.saurik.com Git - bison.git/commitdiff
* tests/regression.at (Token definitions): Prototype yylex and
authorAkim Demaille <akim@epita.fr>
Mon, 13 May 2002 08:56:20 +0000 (08:56 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 13 May 2002 08:56:20 +0000 (08:56 +0000)
yyerror.

ChangeLog
tests/regression.at

index c45fa3a513344c10f29ad7d903a432288a69c3bf..598a2e478b213b4469cedf4d06c411d2ad509b2a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-13  Akim Demaille  <akim@epita.fr>
+
+       * tests/regression.at (Token definitions): Prototype yylex and
+       yyerror.
+
 2002-05-12  Paul Hilfinger  <Hilfinger@CS.Berkeley.EDU>
 
        * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
index 9ebff2e8fa8e7fde3d758a06a960e76605de1763..f28e9ae3bee82445450d6610402df7f8e7ee3791 100644 (file)
@@ -296,7 +296,11 @@ AT_SETUP([Token definitions])
 
 # Bison managed, when fed with `%token 'f' "f"' to #define 'f'!
 AT_DATA([input.y],
-[[%token "end of file"
+[%{
+void yyerror (const char *s);
+int yylex (void);
+%}
+[%token "end of file"
 %token 'a' "a"
 %token "b" 'b'
 %token "c" c