diff options
author | Sam James <sam@gentoo.org> | 2023-01-29 04:15:25 +0000 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2023-01-29 11:32:22 -0600 |
commit | 5af39444404ad71541d95fcd66abd5c032e4bf07 (patch) | |
tree | 351bd665653f3dfc056c44cc4381ad47f0044db9 /src/librc/librc-daemon.c | |
parent | 01bcdb43b69cae8e5570042819c4157a264a074d (diff) |
librc: missing includes from IWYU
Diffstat (limited to 'src/librc/librc-daemon.c')
-rw-r--r-- | src/librc/librc-daemon.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/librc/librc-daemon.c b/src/librc/librc-daemon.c index ec02e8b7..50245129 100644 --- a/src/librc/librc-daemon.c +++ b/src/librc/librc-daemon.c @@ -15,10 +15,21 @@ * except according to the terms contained in the LICENSE file. */ +#include <errno.h> +#include <dirent.h> +#include <fcntl.h> +#include <limits.h> #include <signal.h> +#include <stdbool.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <sys/stat.h> +#include <unistd.h> #include "queue.h" #include "librc.h" +#include "helpers.h" #if defined(__linux__) || (defined (__FreeBSD_kernel__) && defined(__GLIBC__)) \ || defined(__GNU__) |