diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2007-11-27 14:56:32 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2007-11-27 14:56:32 +0000 |
commit | 85ff3814e9cc9306814bdab8bd9e627e0ee3cd8a (patch) | |
tree | 5bd178aea2d7f51e60517048958cd5e95b464f6d /usr.sbin/config | |
parent | 40919091031ec01d0e24aded0ffa8fc87076c3f4 (diff) |
add missing header for errx.
ok otto@ deraadt@
Diffstat (limited to 'usr.sbin/config')
-rw-r--r-- | usr.sbin/config/mkmakefile.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/config/mkmakefile.c b/usr.sbin/config/mkmakefile.c index ff83a243a36..83bd8cfa675 100644 --- a/usr.sbin/config/mkmakefile.c +++ b/usr.sbin/config/mkmakefile.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mkmakefile.c,v 1.26 2007/11/26 19:49:46 deraadt Exp $ */ +/* $OpenBSD: mkmakefile.c,v 1.27 2007/11/27 14:56:31 chl Exp $ */ /* $NetBSD: mkmakefile.c,v 1.34 1997/02/02 21:12:36 thorpej Exp $ */ /* @@ -43,6 +43,7 @@ #include <sys/param.h> #include <ctype.h> +#include <err.h> #include <errno.h> #include <stdio.h> #include <stdlib.h> |