aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorokan2019-02-13 15:43:24 +0000
committerokan2019-02-13 15:43:24 +0000
commitc9666148f8f5d4a8f9e34e3083ed6cc7e0610212 (patch)
tree276799e092f45bf33b21ffd81f4f6cc5914ca369 /util.c
parent025c9d4b120958c111c5d0d56b173ab1499b77da (diff)
downloadcwm-c9666148f8f5d4a8f9e34e3083ed6cc7e0610212.tar.gz
fix missing includes
Diffstat (limited to 'util.c')
-rw-r--r--util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/util.c b/util.c
index 5eb059f..624fc13 100644
--- a/util.c
+++ b/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>