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_sym.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_sym.c')
-rw-r--r-- | sys/ddb/db_sym.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c index a52e70d7c8b..0cf3ed052e6 100644 --- a/sys/ddb/db_sym.c +++ b/sys/ddb/db_sym.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_sym.c,v 1.20 1997/07/06 23:09:25 niklas Exp $ */ +/* $OpenBSD: db_sym.c,v 1.21 1997/07/19 22:31:20 niklas Exp $ */ /* $NetBSD: db_sym.c,v 1.12 1996/02/05 01:57:15 christos Exp $ */ /* @@ -32,6 +32,8 @@ #include <sys/malloc.h> #include <sys/systm.h> +#include <vm/vm.h> + #include <machine/db_machdep.h> #include <ddb/db_sym.h> |