summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2013-04-09 01:50:02 +0000
committerguenther <guenther@openbsd.org>2013-04-09 01:50:02 +0000
commit58c1dd5ca65b6c47a3479365c0812e3e891a6b5a (patch)
tree3471f3c80bee7a1d3865409335e8891b29dcb6ab /sys
parentAdd missing #ifdef CRYPTO around amd64_has_aesni (diff)
downloadwireguard-openbsd-58c1dd5ca65b6c47a3479365c0812e3e891a6b5a.tar.xz
wireguard-openbsd-58c1dd5ca65b6c47a3479365c0812e3e891a6b5a.zip
Need #include "isa.h" for NISA
Diff from Christian Groessler (chris (at) groessler.org)
Diffstat (limited to 'sys')
-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 *);