fix missing includes

This commit is contained in:
okan 2019-02-13 15:43:24 +00:00
parent 695eb1d8e5
commit c307e37dcb
3 changed files with 2 additions and 1 deletions

1
conf.c
View File

@ -20,7 +20,6 @@
#include <sys/types.h>
#include <sys/queue.h>
#include <sys/stat.h>
#include <err.h>
#include <errno.h>

View File

@ -20,6 +20,7 @@
#include <sys/types.h>
#include <sys/queue.h>
#include <sys/stat.h>
#include <dirent.h>
#include <err.h>

1
util.c
View File

@ -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>