summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorart <art@openbsd.org>2000-04-06 13:30:47 +0000
committerart <art@openbsd.org>2000-04-06 13:30:47 +0000
commit12c0fac863fa2dbcbf0ec0724a45c7e2bc9b6e4a (patch)
treebfa14663214df3660e46a9e8ac6b3ca5867ce7ea
parentRandom cleanup. (diff)
downloadwireguard-openbsd-12c0fac863fa2dbcbf0ec0724a45c7e2bc9b6e4a.tar.xz
wireguard-openbsd-12c0fac863fa2dbcbf0ec0724a45c7e2bc9b6e4a.zip
include vm/vm.h because some stuff in the kernel depends on that.
(all other archs include it)
-rw-r--r--sys/arch/alpha/include/db_machdep.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/alpha/include/db_machdep.h b/sys/arch/alpha/include/db_machdep.h
index b330fd30db4..5e1f70abc05 100644
--- a/sys/arch/alpha/include/db_machdep.h
+++ b/sys/arch/alpha/include/db_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_machdep.h,v 1.7 1997/07/23 23:32:43 niklas Exp $ */
+/* $OpenBSD: db_machdep.h,v 1.8 2000/04/06 13:30:47 art Exp $ */
/*
* Copyright (c) 1997 Niklas Hallqvist. All rights reserverd.
@@ -32,6 +32,9 @@
#ifndef _ALPHA_DB_MACHDEP_H_
#define _ALPHA_DB_MACHDEP_H_
+/* XXX - Need to include vm.h for boolean_t */
+#include <vm/vm.h>
+
struct opcode {
enum opc_fmt { OPC_PAL, OPC_RES, OPC_MEM, OPC_OP, OPC_BR } opc_fmt;
char *opc_name;