diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-03-27 11:32:41 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-03-27 11:53:12 +0100 |
commit | ca78ad1de987b800978622a22ac6c5caf628a037 (patch) | |
tree | 9445e8e303fbb8f52aaccf6cd280b7cd957dc97e /src/test/test-rlimit-util.c | |
parent | b45556375e0b9989a1245a36fcb673b95eb21f43 (diff) | |
download | systemd-ca78ad1de987b800978622a22ac6c5caf628a037.tar.gz |
headers: remove unneeded includes from util.h
This means we need to include many more headers in various files that simply
included util.h before, but it seems cleaner to do it this way.
Diffstat (limited to 'src/test/test-rlimit-util.c')
-rw-r--r-- | src/test/test-rlimit-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-rlimit-util.c b/src/test/test-rlimit-util.c index 771719a267..fac30126ce 100644 --- a/src/test/test-rlimit-util.c +++ b/src/test/test-rlimit-util.c @@ -8,7 +8,7 @@ #include "missing.h" #include "rlimit-util.h" #include "string-util.h" -#include "util.h" +#include "time-util.h" static void test_rlimit_parse_format(int resource, const char *string, rlim_t soft, rlim_t hard, int ret, const char *formatted) { _cleanup_free_ char *f = NULL; |