summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2015-04-10 00:39:16 +0200
committerJohn Crispin <blogic@openwrt.org>2015-04-10 00:39:16 +0200
commit27159f21f76b973a9fa3ec92b8fee2e390d43a43 (patch)
tree83b7c7dfceed626f2c13db98e212adcc1ac4343b
parent91da63d3d3fd680c805dd1a1b78df5b8731a8173 (diff)
downloadunitd-27159f21f76b973a9fa3ec92b8fee2e390d43a43.tar
unitd-27159f21f76b973a9fa3ec92b8fee2e390d43a43.zip
fix include order
this broke x86_64 builds on uclibc Signed-off-by: John Crispin <blogic@openwrt.org>
-rw-r--r--trace/trace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/trace/trace.c b/trace/trace.c
index 12f0ee6..d70957d 100644
--- a/trace/trace.c
+++ b/trace/trace.c
@@ -14,9 +14,9 @@
#define _GNU_SOURCE
#include <stddef.h>
#include <sys/ptrace.h>
+#include <sys/types.h>
#include <sys/user.h>
#include <sys/wait.h>
-#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>