diff options
author | Sam James <sam@gentoo.org> | 2023-01-29 04:18:48 +0000 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2023-01-29 11:32:22 -0600 |
commit | d795ea183f72846384c7873939939ea32b9011b1 (patch) | |
tree | 6c2a88c85a75e7ea643ea182c1152322d819cd5f /src/mark_service | |
parent | 5af39444404ad71541d95fcd66abd5c032e4bf07 (diff) |
mark_service: missing includes from IWYU
Diffstat (limited to 'src/mark_service')
-rw-r--r-- | src/mark_service/mark_service.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/mark_service/mark_service.c b/src/mark_service/mark_service.c index eaab6eed..7d4d9d97 100644 --- a/src/mark_service/mark_service.c +++ b/src/mark_service/mark_service.c @@ -10,24 +10,18 @@ * 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 <sys/types.h> #include "einfo.h" #include "rc.h" #include "misc.h" +#include "helpers.h" const char *applet = NULL; |