diff options
author | Sam James <sam@gentoo.org> | 2023-01-29 04:19:35 +0000 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2023-01-29 11:32:22 -0600 |
commit | 17cfb41d818ff39103f91b7f973eb749b27015e5 (patch) | |
tree | 64b7f52dce45d0fae4788e719c721099f90a68b8 /src/service | |
parent | 1bc87b7a7cc48eaa3f3c6731af935593f9a21050 (diff) |
service: missing includes from IWYU
Diffstat (limited to 'src/service')
-rw-r--r-- | src/service/service.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/service/service.c b/src/service/service.c index 001d3ad3..2545a022 100644 --- a/src/service/service.c +++ b/src/service/service.c @@ -10,24 +10,16 @@ * except according to the terms contained in the LICENSE file. */ -#include <sys/types.h> -#include <sys/time.h> - #include <errno.h> -#include <ctype.h> -#include <inttypes.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> -#include <signal.h> #include <string.h> -#include <syslog.h> -#include <time.h> -#include <unistd.h> #include "einfo.h" #include "rc.h" #include "misc.h" +#include "helpers.h" const char *applet = NULL; |