diff options
author | Sam James <sam@gentoo.org> | 2023-01-29 04:19:55 +0000 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2023-01-29 11:32:22 -0600 |
commit | db96295e000994963a5e0c4b4d121c3ad0353670 (patch) | |
tree | 755665e786d9365ea92db3f51239ef059d5e7d59 /src | |
parent | f5ed484920adef75f85834a29e7fc8bcd18abb9c (diff) |
value: missing includes from IWYU
Diffstat (limited to 'src')
-rw-r--r-- | src/value/value.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/value/value.c b/src/value/value.c index f7089de4..e5190379 100644 --- a/src/value/value.c +++ b/src/value/value.c @@ -12,24 +12,14 @@ #define SYSLOG_NAMES -#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; |