diff options
author | 2010-09-29 13:23:37 +0000 | |
---|---|---|
committer | 2010-09-29 13:23:37 +0000 | |
commit | f290c528cadd90ee12a862f00e425a27768c86eb (patch) | |
tree | d25421b0949ea82893e2da0a9309aa8fc68667ed | |
parent | back out support for variable sized processing unit controls until (diff) | |
download | wireguard-openbsd-f290c528cadd90ee12a862f00e425a27768c86eb.tar.xz wireguard-openbsd-f290c528cadd90ee12a862f00e425a27768c86eb.zip |
Add missing err.h include
OK deraadt@
-rw-r--r-- | sbin/init/init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/init/init.c b/sbin/init/init.c index 9065589fb6f..ee2a169a15e 100644 --- a/sbin/init/init.c +++ b/sbin/init/init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: init.c,v 1.42 2010/08/07 10:22:28 phessler Exp $ */ +/* $OpenBSD: init.c,v 1.43 2010/09/29 13:23:37 dcoppa Exp $ */ /* $NetBSD: init.c,v 1.22 1996/05/15 23:29:33 jtc Exp $ */ /*- @@ -39,6 +39,7 @@ #include <sys/reboot.h> #include <db.h> +#include <err.h> #include <errno.h> #include <fcntl.h> #include <signal.h> |