yacc rules change.

This commit is contained in:
Poul-Henning Kamp 1996-05-30 23:09:11 +00:00
parent 82931d49f9
commit ff8830e331
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16022
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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))