colldef(1) does not need the libc's internal collate.h header anymore

This commit is contained in:
bapt 2015-11-21 10:52:32 +00:00
parent 1ad504c2e1
commit fff88089c8
2 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,7 @@
PROG= colldef
SRCS= parse.y scan.l y.tab.h
LFLAGS= -8 -i
CFLAGS+=-I. -I${.CURDIR} -I${.CURDIR}/../../lib/libc/locale
CFLAGS+=-I. -I${.CURDIR}
CFLAGS+=-DCOLLATE_DEBUG -DYY_NO_UNPUT -DYY_NO_INPUT
LIBADD= l

View File

@ -32,12 +32,13 @@ __FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <arpa/inet.h>
#include <err.h>
#include <limits.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sysexits.h>
#include "collate.h"
#include "common.h"
extern FILE *yyin;