diff options
| author | 1997-07-19 22:31:14 +0000 | |
|---|---|---|
| committer | 1997-07-19 22:31:14 +0000 | |
| commit | 60d9dbc1a4b9cf0776aad48139669b1cda96691c (patch) | |
| tree | 80980518b3ed22e9aa534a4c1582e520909d05cd /sys/ddb/db_examine.c | |
| parent | Make SOFTWARE_SSTEP compile with strict prototyping (diff) | |
| download | wireguard-openbsd-60d9dbc1a4b9cf0776aad48139669b1cda96691c.tar.xz wireguard-openbsd-60d9dbc1a4b9cf0776aad48139669b1cda96691c.zip | |
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_examine.c')
| -rw-r--r-- | sys/ddb/db_examine.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/ddb/db_examine.c b/sys/ddb/db_examine.c index 6491364c1ac..8a157f407e6 100644 --- a/sys/ddb/db_examine.c +++ b/sys/ddb/db_examine.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_examine.c,v 1.7 1997/07/07 19:45:22 niklas Exp $ */ +/* $OpenBSD: db_examine.c,v 1.8 1997/07/19 22:31:16 niklas Exp $ */ /* $NetBSD: db_examine.c,v 1.11 1996/03/30 22:30:07 christos Exp $ */ /* @@ -33,6 +33,8 @@ #include <sys/param.h> #include <sys/proc.h> +#include <vm/vm.h> + #include <machine/db_machdep.h> /* type definitions */ #include <ddb/db_lex.h> |
