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

This commit is contained in:
Baptiste Daroussin 2015-11-21 10:52:32 +00:00
parent 6d2a1fbf23
commit c9a1870367
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=291127
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;