diff options
author | 2015-04-15 14:06:03 +0000 | |
---|---|---|
committer | 2015-04-15 14:06:03 +0000 | |
commit | 8219dfc44b468d09dcbcd6fa6916773e0fe2dec3 (patch) | |
tree | a2141a2af6d54249859132fa7ce3650272c73eb6 | |
parent | Avoid using inet_ntoa() twice in a single printf() parameter list (diff) | |
download | wireguard-openbsd-8219dfc44b468d09dcbcd6fa6916773e0fe2dec3.tar.xz wireguard-openbsd-8219dfc44b468d09dcbcd6fa6916773e0fe2dec3.zip |
include header required for DEBUG build; ok jsg@
-rw-r--r-- | sys/arch/amd64/amd64/disksubr.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/amd64/amd64/disksubr.c b/sys/arch/amd64/amd64/disksubr.c index 76e88b8e874..0a50edf5522 100644 --- a/sys/arch/amd64/amd64/disksubr.c +++ b/sys/arch/amd64/amd64/disksubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: disksubr.c,v 1.69 2015/03/14 03:38:46 jsg Exp $ */ +/* $OpenBSD: disksubr.c,v 1.70 2015/04/15 14:06:03 naddy Exp $ */ /* $NetBSD: disksubr.c,v 1.21 1996/05/03 19:42:03 christos Exp $ */ /* @@ -38,6 +38,10 @@ #include <sys/reboot.h> #include <sys/conf.h> +#ifdef DEBUG +#include <sys/systm.h> +#endif + #include <machine/biosvar.h> /* |