diff options
author | 1999-09-17 09:39:21 +0000 | |
---|---|---|
committer | 1999-09-17 09:39:21 +0000 | |
commit | dfc47ef3080888545baac629cdc209c427c25df4 (patch) | |
tree | 8077f74453d2321eacf25e0aab8d79f717dbad2a | |
parent | add IFM_NONE instead of IFM_AUTO for isolation (diff) | |
download | wireguard-openbsd-dfc47ef3080888545baac629cdc209c427c25df4.tar.xz wireguard-openbsd-dfc47ef3080888545baac629cdc209c427c25df4.zip |
bad style to include machine/vmparam.h carelessly
-rw-r--r-- | sys/compat/common/compat_util.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/compat/common/compat_util.h b/sys/compat/common/compat_util.h index f0fbf4cd51e..e2b56e911ed 100644 --- a/sys/compat/common/compat_util.h +++ b/sys/compat/common/compat_util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: compat_util.h,v 1.2 1996/08/02 20:34:41 niklas Exp $ */ +/* $OpenBSD: compat_util.h,v 1.3 1999/09/17 09:39:21 deraadt Exp $ */ /* $NetBSD: compat_util.h,v 1.1 1995/06/24 20:16:05 christos Exp $ */ /* @@ -33,7 +33,9 @@ #ifndef _COMPAT_UTIL_H_ #define _COMPAT_UTIL_H_ -#include <machine/vmparam.h> +#include <sys/param.h> +#include <vm/vm.h> +#include <vm/vm_param.h> #include <sys/exec.h> #include <sys/cdefs.h> #include <sys/proc.h> |