diff options
author | Sam James <sam@gentoo.org> | 2023-01-29 04:19:06 +0000 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2023-01-29 11:32:22 -0600 |
commit | 01acbe3c271c1e84370569af24119de140ea9831 (patch) | |
tree | 3c4bb6d22d29b7b484cde52cf03595e031f7a78a | |
parent | aa5c3ccd0b269057c1118ce040319072b28a841f (diff) |
openrc-init: missing includes from IWYU
-rw-r--r-- | src/openrc-init/openrc-init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/openrc-init/openrc-init.c b/src/openrc-init/openrc-init.c index 2e6d3677..90fdcbb4 100644 --- a/src/openrc-init/openrc-init.c +++ b/src/openrc-init/openrc-init.c @@ -27,16 +27,16 @@ #include <string.h> #include <time.h> #include <unistd.h> -#include <sys/types.h> #include <sys/stat.h> #include <sys/reboot.h> +#include <sys/types.h> #include <sys/wait.h> +#include <utmp.h> #ifdef HAVE_SELINUX # include <selinux/selinux.h> #endif -#include "helpers.h" #include "rc.h" #include "plugin.h" #include "wtmp.h" |