diff options
author | 2013-11-13 18:30:48 +0000 | |
---|---|---|
committer | 2013-11-13 18:30:48 +0000 | |
commit | 003afffe743cdb5806b7ba967d96f70d4507b345 (patch) | |
tree | 8c4c862c6754aadf2216f4c68e2430a6c847177d | |
parent | DIOCGETSRCNODES was leaking a little bit more kernel information (diff) | |
download | wireguard-openbsd-003afffe743cdb5806b7ba967d96f70d4507b345.tar.xz wireguard-openbsd-003afffe743cdb5806b7ba967d96f70d4507b345.zip |
add missing headers here too, forgotten after testing the diff.
-rw-r--r-- | sys/arch/armish/armish/armish_machdep.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/armish/armish/armish_machdep.c b/sys/arch/armish/armish/armish_machdep.c index 17a33541ac5..b3b6ec557c9 100644 --- a/sys/arch/armish/armish/armish_machdep.c +++ b/sys/arch/armish/armish/armish_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: armish_machdep.c,v 1.20 2013/11/13 07:03:11 uebayasi Exp $ */ +/* $OpenBSD: armish_machdep.c,v 1.21 2013/11/13 18:30:48 jasper Exp $ */ /* $NetBSD: lubbock_machdep.c,v 1.2 2003/07/15 00:25:06 lukem Exp $ */ /* @@ -98,11 +98,14 @@ #include <sys/device.h> #include <dev/cons.h> #include <dev/ic/smc91cxxreg.h> +#include <sys/socket.h> #include <machine/db_machdep.h> #include <ddb/db_sym.h> #include <ddb/db_extern.h> +#include <net/if.h> + #include <machine/bootconfig.h> #include <machine/bus.h> #include <machine/cpu.h> |