summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usr.bin/xlint/lint1/Makefile2
-rw-r--r--usr.bin/xlint/lint1/func.c2
-rw-r--r--usr.bin/xlint/lint1/scan.l2
3 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/xlint/lint1/Makefile b/usr.bin/xlint/lint1/Makefile
index d5e519a..4868019 100644
--- a/usr.bin/xlint/lint1/Makefile
+++ b/usr.bin/xlint/lint1/Makefile
@@ -9,7 +9,7 @@ DPADD+= ${LIBL}
YFLAGS= -d
CFLAGS+=-I.
LINTFLAGS=-aehpz
-CLEANFILES+=y.tab.h cgram.c scan.c
+CLEANFILES+=cgram.tab.h cgram.c scan.c
BINDIR= /usr/libexec
diff --git a/usr.bin/xlint/lint1/func.c b/usr.bin/xlint/lint1/func.c
index 5d3a172..5f6b989 100644
--- a/usr.bin/xlint/lint1/func.c
+++ b/usr.bin/xlint/lint1/func.c
@@ -39,7 +39,7 @@ static char rcsid[] = "$NetBSD: func.c,v 1.7 1995/10/02 17:31:40 jpo Exp $";
#include <string.h>
#include "lint1.h"
-#include "y.tab.h"
+#include "cgram.tab.h"
/*
* Contains a pointer to the symbol table entry of the current function
diff --git a/usr.bin/xlint/lint1/scan.l b/usr.bin/xlint/lint1/scan.l
index 53f0083..3306dec 100644
--- a/usr.bin/xlint/lint1/scan.l
+++ b/usr.bin/xlint/lint1/scan.l
@@ -45,7 +45,7 @@ static char rcsid[] = "$NetBSD: scan.l,v 1.8 1995/10/23 13:38:51 jpo Exp $";
#include <err.h>
#include "lint1.h"
-#include "y.tab.h"
+#include "cgram.tab.h"
#define CHAR_MASK (~(~0 << CHAR_BIT))
OpenPOWER on IntegriCloud