diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2019-02-13 15:43:25 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2019-02-13 15:43:25 +0000 |
commit | 600f035e8991fdc9705ecc8d43af84fd6c0b34a5 (patch) | |
tree | ff670de8d7e874c19f649d0c94c14c229407ef70 /app/cwm/util.c | |
parent | 003d327c642172bc130dcfcc904f42638acb8f5a (diff) |
fix missing includes
Diffstat (limited to 'app/cwm/util.c')
-rw-r--r-- | app/cwm/util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/cwm/util.c b/app/cwm/util.c index 5eb059fc0..624fc133c 100644 --- a/app/cwm/util.c +++ b/app/cwm/util.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: util.c,v 1.22 2018/02/04 22:56:26 okan Exp $ + * $OpenBSD: util.c,v 1.23 2019/02/13 15:43:24 okan Exp $ */ #include <sys/types.h> @@ -24,6 +24,7 @@ #include <err.h> #include <errno.h> #include <limits.h> +#include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |