Add empty pmap.h and vmparam.h to make userland happier.
This commit is contained in:
chris 2001-07-29 09:50:07 +00:00
parent af16732a3a
commit 89415a32e2
3 changed files with 20 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.19 2001/07/14 00:23:09 matt Exp $
# $NetBSD: Makefile,v 1.20 2001/07/29 09:50:07 chris Exp $
KDIR= /sys/arch/arm/include
INCSDIR= /usr/include/arm
@ -15,11 +15,11 @@ INCS= ansi.h aout_machdep.h armreg.h asm.h \
limits.h lock.h \
math.h \
ofisa_machdep.h ofw.h \
param.h pci_machdep.h pio.h proc.h profile.h profileio.h pte.h \
ptrace.h \
param.h pci_machdep.h pio.h pmap.h proc.h profile.h profileio.h \
pte.h ptrace.h \
reg.h \
setjmp.h signal.h stdarg.h sysarch.h \
trap.h types.h \
varargs.h
varargs.h vmparam.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,8 @@
/* $NetBSD: pmap.h,v 1.1 2001/07/29 09:50:07 chris Exp $ */
/*
* Dummy pmap.h file to keep userland happy
*/
#ifdef _KERNEL
#error "userland pmap.h included by the kernel!"
#endif

View File

@ -0,0 +1,8 @@
/* $NetBSD: vmparam.h,v 1.1 2001/07/29 09:50:07 chris Exp $ */
/*
* Dummy vmparam.h file to keep userland happy
*/
#ifdef _KERNEL
#error "userland vmparam.h included by the kernel!"
#endif