diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-27 14:58:05 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-27 14:58:05 +0100 |
commit | 7760171904ef007f19e8f46aa240a00e382d5b74 (patch) | |
tree | 217d98308a3039e106efde5fd6a7b6a657916950 /src/libsystemd/sd-network | |
parent | 4fee397531c97d22e41fb3f02452e82d412fe2b5 (diff) |
util-lib: move inotify-related definitions to fs-util.[ch]
Diffstat (limited to 'src/libsystemd/sd-network')
-rw-r--r-- | src/libsystemd/sd-network/sd-network.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libsystemd/sd-network/sd-network.c b/src/libsystemd/sd-network/sd-network.c index 2eaa2626f7..efbceba83d 100644 --- a/src/libsystemd/sd-network/sd-network.c +++ b/src/libsystemd/sd-network/sd-network.c @@ -28,13 +28,14 @@ #include "sd-network.h" #include "alloc-util.h" +#include "fd-util.h" #include "fileio.h" +#include "fs-util.h" #include "macro.h" +#include "parse-util.h" #include "string-util.h" #include "strv.h" #include "util.h" -#include "fd-util.h" -#include "parse-util.h" _public_ int sd_network_get_operational_state(char **state) { _cleanup_free_ char *s = NULL; |