diff options
-rw-r--r-- | src/rc-depend/rc-depend.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/rc-depend/rc-depend.c b/src/rc-depend/rc-depend.c index 9f833b70..791bddc8 100644 --- a/src/rc-depend/rc-depend.c +++ b/src/rc-depend/rc-depend.c @@ -15,27 +15,20 @@ * except according to the terms contained in the LICENSE file. */ -#include <sys/stat.h> -#include <sys/time.h> -#include <sys/types.h> - #include <errno.h> -#include <fcntl.h> #include <getopt.h> -#include <limits.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <time.h> #include <unistd.h> -#include <utime.h> #include "einfo.h" #include "queue.h" #include "rc.h" #include "misc.h" #include "_usage.h" +#include "helpers.h" const char *applet = NULL; const char *extraopts = NULL; |