diff options
Diffstat (limited to 'src/rc-service/rc-service.c')
-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; |