diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-08-05 07:01:08 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-08-05 07:01:08 -0700 |
commit | cfef6286fa1beaf2072dfb3240e40539250dc527 (patch) | |
tree | 0e9125ee7ccb62fdda0ab2a6aace4791f5099b52 /parser.l | |
parent | 894c655f0214531ad7eff3d68d72792ae18d40cd (diff) | |
download | txr-cfef6286fa1beaf2072dfb3240e40539250dc527.tar.gz txr-cfef6286fa1beaf2072dfb3240e40539250dc527.tar.bz2 txr-cfef6286fa1beaf2072dfb3240e40539250dc527.zip |
* parser.y: Back port from Berkeley Yacc to GNU Bison.
We need a prototype of yylex that is in scope of the grammar,
but YYSTYPE is not defined there.
* parser.l: Bison 3 declares yyparse in y.tab.h, so we have to
reorder some #includes.
Diffstat (limited to 'parser.l')
-rw-r--r-- | parser.l | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,6 @@ #include <unistd.h> #endif #include "lib.h" -#include "y.tab.h" #include "gc.h" #include "stream.h" #include "utf8.h" @@ -49,6 +48,7 @@ #include "unwind.h" #include "hash.h" #include "parser.h" +#include "y.tab.h" #define YY_INPUT(buf, result, max_size) \ do { \ |