diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-25 14:08:25 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-26 01:24:38 +0100 |
commit | c004493cdefc1f43a3956ca529e8070f8d70be56 (patch) | |
tree | 858425bad735d74ad02a95e4ccb93be444c581c3 /src/shared/spawn-polkit-agent.c | |
parent | ae9b44b64c8494f2cec4198ce9034c53f48ce699 (diff) |
util-lib: split out IO related calls to io-util.[ch]
Diffstat (limited to 'src/shared/spawn-polkit-agent.c')
-rw-r--r-- | src/shared/spawn-polkit-agent.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/shared/spawn-polkit-agent.c b/src/shared/spawn-polkit-agent.c index 472cdecf20..7cc9e7ccc1 100644 --- a/src/shared/spawn-polkit-agent.c +++ b/src/shared/spawn-polkit-agent.c @@ -25,11 +25,12 @@ #include <errno.h> #include <poll.h> +#include "fd-util.h" +#include "io-util.h" #include "log.h" -#include "util.h" #include "process-util.h" #include "spawn-polkit-agent.h" -#include "fd-util.h" +#include "util.h" #ifdef ENABLE_POLKIT static pid_t agent_pid = 0; |