aboutsummaryrefslogtreecommitdiff
path: root/parse.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 /parse.c
parent453ce8642b69943dee03e89fb7666a80f7c84bcf (diff)
downloadone-true-awk-07f04384230b0c4cb8c47da7b5a6aebdea992b1e.tar.gz
Move exclusively to bison as parser generator.
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.c b/parse.c
index b13e0c4..1466c38 100644
--- a/parse.c
+++ b/parse.c
@@ -27,7 +27,7 @@ THIS SOFTWARE.
#include <string.h>
#include <stdlib.h>
#include "awk.h"
-#include "ytab.h"
+#include "awkgram.tab.h"
Node *nodealloc(int n)
{