diff options
author | 2001-03-22 23:50:53 +0000 | |
---|---|---|
committer | 2001-03-22 23:50:53 +0000 | |
commit | 879ffe429b50d31cded4479e1662cfde5fd0bf09 (patch) | |
tree | b5a39909c717291a93b7ad0b5a5390ae81e02308 | |
parent | Remove transient config file. (diff) | |
download | wireguard-openbsd-879ffe429b50d31cded4479e1662cfde5fd0bf09.tar.xz wireguard-openbsd-879ffe429b50d31cded4479e1662cfde5fd0bf09.zip |
pmap_physseg is kernel-only business
-rw-r--r-- | sys/arch/hppa/include/vmparam.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/vmparam.h b/sys/arch/hppa/include/vmparam.h index 7ec4fee829a..176fe4ca4c9 100644 --- a/sys/arch/hppa/include/vmparam.h +++ b/sys/arch/hppa/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.10 2001/01/12 23:37:01 mickey Exp $ */ +/* $OpenBSD: vmparam.h,v 1.11 2001/03/22 23:50:53 mickey Exp $ */ /* * Copyright (c) 1988-1994, The University of Utah and @@ -141,9 +141,11 @@ #define MACHINE_NEW_NONCONTIG 1 /* defined this until we rely on vm */ #define PMAP_NEW +#ifdef _KERNEL struct pmap_physseg { struct pv_entry *pvent; }; +#endif #endif /* _MACHINE_VMPARAM_H_ */ |