Grab headers from /usr/include.

This commit is contained in:
Ruslan Ermilov 2001-05-18 13:58:08 +00:00
parent 59ca51df49
commit 5b5df07ddc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=76815
2 changed files with 2 additions and 7 deletions

View File

@ -5,8 +5,4 @@
PROG= ppilcd
NOMAN= YES
# XXX This should not be done in fact. The header files should
# be copied to /usr/include/sys/dev/ppbus during make world
CFLAGS += -I/sys/dev/ppbus
.include <bsd.prog.mk>

View File

@ -14,9 +14,8 @@
#include <err.h>
#include <sysexits.h>
/* XXX should be in <machine/> */
#include "ppbconf.h"
#include "ppi.h"
#include <dev/ppbus/ppbconf.h>
#include <dev/ppbus/ppi.h>
#define debug(lev, fmt, args...) if (debuglevel >= lev) fprintf(stderr, fmt "\n" , ## args);