diff options
author | 2015-03-14 05:48:17 +0000 | |
---|---|---|
committer | 2015-03-14 05:48:17 +0000 | |
commit | cb6b0ad07aa00d4d0a354a50577332ee1eda95fb (patch) | |
tree | f825f1c366c84447ca213c4b797cf097e306fec2 /sys/ddb/db_variables.c | |
parent | remove unused 'cause' string when checking child status (diff) | |
download | wireguard-openbsd-cb6b0ad07aa00d4d0a354a50577332ee1eda95fb.tar.xz wireguard-openbsd-cb6b0ad07aa00d4d0a354a50577332ee1eda95fb.zip |
restore systm.h, needed for strcmp. from Steven McDonald
Diffstat (limited to 'sys/ddb/db_variables.c')
-rw-r--r-- | sys/ddb/db_variables.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/ddb/db_variables.c b/sys/ddb/db_variables.c index 96895784236..1d05b3f8e26 100644 --- a/sys/ddb/db_variables.c +++ b/sys/ddb/db_variables.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_variables.c,v 1.16 2015/03/14 03:38:46 jsg Exp $ */ +/* $OpenBSD: db_variables.c,v 1.17 2015/03/14 05:48:17 tedu Exp $ */ /* $NetBSD: db_variables.c,v 1.8 1996/02/05 01:57:19 christos Exp $ */ /* @@ -28,6 +28,7 @@ */ #include <sys/param.h> +#include <sys/systm.h> #include <machine/db_machdep.h> |