summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2013-04-09 01:50:03 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2013-04-09 01:50:03 +0000
commit7995039ddf3da7f75f256de667888cdf93185361 (patch)
tree170ec8bd7b1108859d37b4cc0caa63793af8c4e6 /sys/arch
parent3842a9bb32631a59ab232449bb9b09e1e95d378d (diff)
Need #include "isa.h" for NISA
Diff from Christian Groessler (chris (at) groessler.org)
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/i386/i386/trap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/trap.c b/sys/arch/i386/i386/trap.c
index a1bec669502..94083d6f35b 100644
--- a/sys/arch/i386/i386/trap.c
+++ b/sys/arch/i386/i386/trap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: trap.c,v 1.107 2012/12/31 06:44:11 guenther Exp $ */
+/* $OpenBSD: trap.c,v 1.108 2013/04/09 01:50:02 guenther Exp $ */
/* $NetBSD: trap.c,v 1.95 1996/05/05 06:50:02 mycroft Exp $ */
/*-
@@ -76,6 +76,7 @@ extern struct emul emul_linux_aout, emul_linux_elf;
#define KVM86MODE (kvm86_incall)
#endif
+#include "isa.h"
#include "npx.h"
void trap(struct trapframe *);