diff options
author | John Crispin <blogic@openwrt.org> | 2015-04-10 00:39:16 +0200 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-04-10 00:39:16 +0200 |
commit | 27159f21f76b973a9fa3ec92b8fee2e390d43a43 (patch) | |
tree | 83b7c7dfceed626f2c13db98e212adcc1ac4343b /trace | |
parent | 91da63d3d3fd680c805dd1a1b78df5b8731a8173 (diff) | |
download | unitd-27159f21f76b973a9fa3ec92b8fee2e390d43a43.tar unitd-27159f21f76b973a9fa3ec92b8fee2e390d43a43.zip |
fix include order
this broke x86_64 builds on uclibc
Signed-off-by: John Crispin <blogic@openwrt.org>
Diffstat (limited to 'trace')
-rw-r--r-- | trace/trace.c | 2 |
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> |