summaryrefslogtreecommitdiff
path: root/src/grp-utils/systemd-path
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-08-01 16:33:32 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-08-01 16:33:32 -0400
commit272b48187cee0b42b6e936ad2c045f13b391f3ad (patch)
tree383049270ccbac5040e4404bbe71ac49d0c423db /src/grp-utils/systemd-path
parent46277a7844c854210eaa0a3612fa297ec33ddb7b (diff)
find src \( -name '*.h' -o -name '*.c' \) -type f -exec ./fixup_includes {} \;
Diffstat (limited to 'src/grp-utils/systemd-path')
-rw-r--r--src/grp-utils/systemd-path/path.c4
-rw-r--r--src/grp-utils/systemd-path/sd-path.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/grp-utils/systemd-path/path.c b/src/grp-utils/systemd-path/path.c
index aa63884365..ed824fa857 100644
--- a/src/grp-utils/systemd-path/path.c
+++ b/src/grp-utils/systemd-path/path.c
@@ -22,14 +22,14 @@
#include <stdio.h>
#include <stdlib.h>
-#include "sd-path.h"
-
#include "basic/alloc-util.h"
#include "basic/log.h"
#include "basic/macro.h"
#include "basic/string-util.h"
#include "basic/util.h"
+#include "sd-path.h"
+
static const char *arg_suffix = NULL;
static const char* const path_table[_SD_PATH_MAX] = {
diff --git a/src/grp-utils/systemd-path/sd-path.c b/src/grp-utils/systemd-path/sd-path.c
index b904b56c01..2e0a0a7cfd 100644
--- a/src/grp-utils/systemd-path/sd-path.c
+++ b/src/grp-utils/systemd-path/sd-path.c
@@ -17,8 +17,6 @@
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
-#include "sd-path.h"
-
#include "basic/alloc-util.h"
#include "basic/architecture.h"
#include "basic/fd-util.h"
@@ -30,6 +28,8 @@
#include "basic/user-util.h"
#include "basic/util.h"
+#include "sd-path.h"
+
static int from_environment(const char *envname, const char *fallback, const char **ret) {
assert(ret);