diff options
author | Sam James <sam@gentoo.org> | 2023-01-29 04:19:44 +0000 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2023-01-29 11:32:22 -0600 |
commit | 00f90f2b0ebe25f8399a5f7f950f4bc01de8aeb1 (patch) | |
tree | 574fa290e42143bf0e5c08ce8438bb458cd0c135 | |
parent | b4056819264e49473287b3a454cff542b7d415a4 (diff) |
supervise-daemon: missing includes from IWYU
-rw-r--r-- | src/supervise-daemon/supervise-daemon.c | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/src/supervise-daemon/supervise-daemon.c b/src/supervise-daemon/supervise-daemon.c index 06706590..2ef4ca04 100644 --- a/src/supervise-daemon/supervise-daemon.c +++ b/src/supervise-daemon/supervise-daemon.c @@ -27,20 +27,6 @@ # define _GNU_SOURCE #endif -#include <sys/types.h> -#include <sys/ioctl.h> -#include <sys/resource.h> -#include <sys/stat.h> -#include <termios.h> -#include <sys/time.h> -#include <sys/wait.h> - -#ifdef __linux__ -#include <sys/syscall.h> /* For io priority */ -#include <sys/prctl.h> /* For prctl */ -#endif - -#include <ctype.h> #include <errno.h> #include <fcntl.h> #include <getopt.h> @@ -52,7 +38,17 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <stdbool.h> +#include <strings.h> +#ifdef __linux__ +# include <sys/syscall.h> /* For io priority */ +# include <sys/prctl.h> /* For prctl */ +#endif #include <syslog.h> +#include <sys/ioctl.h> +#include <sys/resource.h> +#include <sys/stat.h> +#include <sys/wait.h> #include <time.h> #include <unistd.h> |