aboutsummaryrefslogtreecommitdiff
path: root/lex.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-07-30 17:12:45 +0300
committerArnold D. Robbins <arnold@skeeve.com>2020-07-30 17:12:45 +0300
commit07f04384230b0c4cb8c47da7b5a6aebdea992b1e (patch)
tree22af51caba40b72a11f63cef4cf85fe12a4e4632 /lex.c
parent453ce8642b69943dee03e89fb7666a80f7c84bcf (diff)
downloadone-true-awk-07f04384230b0c4cb8c47da7b5a6aebdea992b1e.tar.gz
Move exclusively to bison as parser generator.
Diffstat (limited to 'lex.c')
-rw-r--r--lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lex.c b/lex.c
index 2cd7672..73cdddb 100644
--- a/lex.c
+++ b/lex.c
@@ -27,7 +27,7 @@ THIS SOFTWARE.
#include <string.h>
#include <ctype.h>
#include "awk.h"
-#include "ytab.h"
+#include "awkgram.tab.h"
extern YYSTYPE yylval;
extern bool infunc;