summary refs log tree commit diff
diff options
context:
space:
mode:
authorokan <okan>2019-02-13 15:43:24 +0000
committerokan <okan>2019-02-13 15:43:24 +0000
commitc307e37dcb8f280e0c3c51248e71e4292e62631d (patch)
tree55f617e7a755940034bc6a17a0b6b5fbe7e22bc7
parent695eb1d8e52c8498afe342ec8ecd404fbffb9e1c (diff)
downloadcwm-c307e37dcb8f280e0c3c51248e71e4292e62631d.tar.gz
cwm-c307e37dcb8f280e0c3c51248e71e4292e62631d.tar.xz
cwm-c307e37dcb8f280e0c3c51248e71e4292e62631d.zip
fix missing includes
-rw-r--r--conf.c1
-rw-r--r--kbfunc.c1
-rw-r--r--util.c1
3 files changed, 2 insertions, 1 deletions
diff --git a/conf.c b/conf.c
index b18dc4a..f15598d 100644
--- a/conf.c
+++ b/conf.c
@@ -20,7 +20,6 @@
 
 #include <sys/types.h>
 #include <sys/queue.h>
-#include <sys/stat.h>
 
 #include <err.h>
 #include <errno.h>
diff --git a/kbfunc.c b/kbfunc.c
index 4fc0b4d..2574954 100644
--- a/kbfunc.c
+++ b/kbfunc.c
@@ -20,6 +20,7 @@
 
 #include <sys/types.h>
 #include <sys/queue.h>
+#include <sys/stat.h>
 
 #include <dirent.h>
 #include <err.h>
diff --git a/util.c b/util.c
index 575d6b2..09135a4 100644
--- a/util.c
+++ b/util.c
@@ -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>