diff options
author | David Coppa <dcoppa@cvs.openbsd.org> | 2010-09-29 13:23:38 +0000 |
---|---|---|
committer | David Coppa <dcoppa@cvs.openbsd.org> | 2010-09-29 13:23:38 +0000 |
commit | 02710d8e3fcae3f3843398ddf7aa99b792bf9b3e (patch) | |
tree | ed892276ed9493956d8a59586dd79f479e3e8cf1 /sbin/init/init.c | |
parent | d9532f628b852e5606d87dc544c6a04466ad3696 (diff) |
Add missing err.h include
OK deraadt@
Diffstat (limited to 'sbin/init/init.c')
-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> |