yacc changes.

This commit is contained in:
Poul-Henning Kamp 1996-05-30 23:03:00 +00:00
parent dd2ff46a12
commit ff0912e2fd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16020
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.5 1995/10/22 00:58:41 ache Exp $
# $Id: Makefile,v 1.6 1995/11/03 14:53:27 ache Exp $
PROG = colldef
LFLAGS = -8 -i
@ -7,7 +7,7 @@ CFLAGS += -I. -I${.CURDIR}/../../lib/libc/locale
SRCS = parse.c scan.c
LDADD = -ll
DPADD = ${LIBL}
CLEANFILES += lex.yy.c parse.c scan.c y.tab.[ch]
CLEANFILES += parse.c scan.c parse.tab.h
SUBDIR = data
.include <bsd.prog.mk>

View File

@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: scan.l,v 1.1 1995/01/22 20:37:31 alex Exp alex $
* $Id: scan.l,v 1.1.1.1 1995/02/17 17:29:50 ache Exp $
*/
#include <err.h>
@ -34,7 +34,7 @@
#include <string.h>
#include <sysexits.h>
#include "collate.h"
#include "y.tab.h"
#include "parse.tab.h"
int line_no = 1;
u_char buf[STR_LEN], *ptr;