summaryrefslogtreecommitdiff
path: root/utils/start-stop-daemon.c
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2014-04-20 04:30:23 +0200
committerGuillem Jover <guillem@debian.org>2014-04-21 16:54:28 +0200
commiteb2981da25b8d68036406e135b891b91139a2601 (patch)
tree5624d306fe77223751fd97e36ccce686f64b6726 /utils/start-stop-daemon.c
parentd12071e4aa2b2e137a3a1ab76408b4d68ab67181 (diff)
downloaddpkg-eb2981da25b8d68036406e135b891b91139a2601.tar.gz
s-s-d: Move Hurd specific headers after all standard headers
Diffstat (limited to 'utils/start-stop-daemon.c')
-rw-r--r--utils/start-stop-daemon.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/start-stop-daemon.c b/utils/start-stop-daemon.c
index 9d8ad4ef0..d88cdbf04 100644
--- a/utils/start-stop-daemon.c
+++ b/utils/start-stop-daemon.c
@@ -47,11 +47,6 @@
#include <sys/syscall.h>
#endif
-#if defined(OSHurd)
-#include <hurd.h>
-#include <ps.h>
-#endif
-
#if defined(OSOpenBSD) || defined(OSFreeBSD) || defined(OSNetBSD)
#include <sys/param.h>
#include <sys/proc.h>
@@ -101,6 +96,11 @@
#include <error.h>
#endif
+#if defined(OSHurd)
+#include <hurd.h>
+#include <ps.h>
+#endif
+
#ifdef _POSIX_PRIORITY_SCHEDULING
#include <sched.h>
#else