summaryrefslogtreecommitdiff
path: root/src/timedate
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-10-26 21:16:26 +0100
committerLennart Poettering <lennart@poettering.net>2015-10-27 13:25:56 +0100
commitf4f15635ec05293ffcc83a5b39f624bbabbd8fd0 (patch)
treea71082ce77e66b48a01a4386e8f36985cc27d3d2 /src/timedate
parentc8b3094de58e3b1e37d06f3d56c9346cffbe320a (diff)
util-lib: move a number of fs operations into fs-util.[ch]
Diffstat (limited to 'src/timedate')
-rw-r--r--src/timedate/timedated.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/timedate/timedated.c b/src/timedate/timedated.c
index 6de9e246f6..e97dc97ae1 100644
--- a/src/timedate/timedated.c
+++ b/src/timedate/timedated.c
@@ -23,21 +23,22 @@
#include <string.h>
#include <unistd.h>
-#include "sd-messages.h"
-#include "sd-event.h"
#include "sd-bus.h"
+#include "sd-event.h"
+#include "sd-messages.h"
-#include "util.h"
-#include "strv.h"
-#include "def.h"
-#include "clock-util.h"
-#include "path-util.h"
-#include "fileio-label.h"
-#include "bus-util.h"
-#include "bus-error.h"
#include "bus-common-errors.h"
+#include "bus-error.h"
+#include "bus-util.h"
+#include "clock-util.h"
+#include "def.h"
#include "event-util.h"
+#include "fileio-label.h"
+#include "fs-util.h"
+#include "path-util.h"
#include "selinux-util.h"
+#include "strv.h"
+#include "util.h"
#define NULL_ADJTIME_UTC "0.0 0 0\n0\nUTC\n"
#define NULL_ADJTIME_LOCAL "0.0 0 0\n0\nLOCAL\n"