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_expr.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_expr.c')
-rw-r--r-- | sys/ddb/db_expr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/ddb/db_expr.c b/sys/ddb/db_expr.c index 317110fe9db..e760e653038 100644 --- a/sys/ddb/db_expr.c +++ b/sys/ddb/db_expr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_expr.c,v 1.5 1997/07/06 16:45:21 niklas Exp $ */ +/* $OpenBSD: db_expr.c,v 1.6 1997/07/19 22:31:17 niklas Exp $ */ /* $NetBSD: db_expr.c,v 1.5 1996/02/05 01:56:58 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> |