diff options
author | Sam James <sam@gentoo.org> | 2023-01-29 04:18:09 +0000 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2023-01-29 11:32:22 -0600 |
commit | 7878a53542d62a3b2413acc1a2ee5ce807b8dec7 (patch) | |
tree | 7f1d78d970edbd2d82ae980f87dd8fbc43ca71fb /src | |
parent | 084e6b5e200dd33ec26c282a012156065aaf19a9 (diff) |
rc-service: missing includes from IWYU
Diffstat (limited to 'src')
-rw-r--r-- | src/rc-service/rc-service.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rc-service/rc-service.c b/src/rc-service/rc-service.c index 69acac19..3d2eb730 100644 --- a/src/rc-service/rc-service.c +++ b/src/rc-service/rc-service.c @@ -15,7 +15,9 @@ * except according to the terms contained in the LICENSE file. */ +#include <errno.h> #include <getopt.h> +#include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -24,8 +26,8 @@ #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; |