diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-09-17 09:39:22 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-09-17 09:39:22 +0000 |
commit | 6d7980364e42b3f40ef0796089d1a32a3363e455 (patch) | |
tree | 1f34bc33efe67923f3f4182bc634619e5c741fbc | |
parent | 5241dd21f6a1ad63a68a198d46225ec350b2c1aa (diff) |
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> |