diff options
author | Sam James <sam@gentoo.org> | 2023-01-29 04:16:48 +0000 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2023-01-29 11:32:22 -0600 |
commit | b4056819264e49473287b3a454cff542b7d415a4 (patch) | |
tree | a25bbea7570b11984d04ec4e88bc3675b22f2e14 /src/start-stop-daemon/pipes.c | |
parent | d5700d036ae285a4af9c7266aff6f3dfbaf1f156 (diff) |
start-stop-daemon: missing includes from IWYU
Diffstat (limited to 'src/start-stop-daemon/pipes.c')
-rw-r--r-- | src/start-stop-daemon/pipes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/start-stop-daemon/pipes.c b/src/start-stop-daemon/pipes.c index 506196d5..5251a4f0 100644 --- a/src/start-stop-daemon/pipes.c +++ b/src/start-stop-daemon/pipes.c @@ -16,8 +16,8 @@ */ #include <stdlib.h> -#include <unistd.h> #include <sys/types.h> +#include <unistd.h> #include "pipes.h" |