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_write_cmd.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_write_cmd.c')
-rw-r--r-- | sys/ddb/db_write_cmd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/ddb/db_write_cmd.c b/sys/ddb/db_write_cmd.c index 69c5df8e1dc..2d64788591e 100644 --- a/sys/ddb/db_write_cmd.c +++ b/sys/ddb/db_write_cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_write_cmd.c,v 1.4 1996/04/21 22:19:27 deraadt Exp $ */ +/* $OpenBSD: db_write_cmd.c,v 1.5 1997/07/19 22:31:22 niklas Exp $ */ /* $NetBSD: db_write_cmd.c,v 1.6 1996/02/05 01:57:25 christos Exp $ */ /* @@ -33,6 +33,8 @@ #include <sys/param.h> #include <sys/proc.h> +#include <vm/vm.h> + #include <machine/db_machdep.h> #include <ddb/db_lex.h> |