diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-07-19 22:31:23 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-07-19 22:31:23 +0000 |
commit | f2d13000af950e3648ffdd8de7d22f8b73969f64 (patch) | |
tree | a5f94f075ef13bf34848d2bcdf77d082ec173281 /sys/ddb/db_print.c | |
parent | 41f461987cd65cf1d751ee8e2cd7c5427bf27cdf (diff) |
Include vm/vm.h everywhere it is needed to get at boolean_t (I would prefer
to have it in sys/types.h but that is problematic). Some KNF.
Diffstat (limited to 'sys/ddb/db_print.c')
-rw-r--r-- | sys/ddb/db_print.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/ddb/db_print.c b/sys/ddb/db_print.c index e2e6c17dd1a..5aad9ed8827 100644 --- a/sys/ddb/db_print.c +++ b/sys/ddb/db_print.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_print.c,v 1.5 1997/07/06 23:09:24 niklas Exp $ */ +/* $OpenBSD: db_print.c,v 1.6 1997/07/19 22:31:20 niklas Exp $ */ /* $NetBSD: db_print.c,v 1.5 1996/02/05 01:57:11 christos Exp $ */ /* @@ -36,6 +36,8 @@ #include <sys/param.h> #include <sys/proc.h> +#include <vm/vm.h> + #include <machine/db_machdep.h> #include <ddb/db_lex.h> |