diff options
author | Sam James <sam@gentoo.org> | 2023-01-29 04:18:01 +0000 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2023-01-29 11:32:22 -0600 |
commit | 084e6b5e200dd33ec26c282a012156065aaf19a9 (patch) | |
tree | 35ca29d2255199c3eed9f2a8c538805cb9245fb5 /src/rc-depend/rc-depend.c | |
parent | a7bd13145bd904b4616b6107e074aa61b6c049de (diff) |
rc-depend: missing includes from IWYU
Diffstat (limited to 'src/rc-depend/rc-depend.c')
-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; |