diff options
| author | Greg Clayton <gclayton@apple.com> | 2011-02-05 06:36:35 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2011-02-05 06:36:35 +0000 |
| commit | 8442fba3b45586bfe55a082fc150d6173d4f4e47 (patch) | |
| tree | d955c4360256e17b0358db52461438c184401371 | |
| parent | 4c2c0fcb9f01d0d1bc8cfed91de68c34e1d784d5 (diff) | |
| download | bcm5719-llvm-8442fba3b45586bfe55a082fc150d6173d4f4e47.tar.gz bcm5719-llvm-8442fba3b45586bfe55a082fc150d6173d4f4e47.zip | |
Apple specific fix for Host.cpp from Kirk Beitz.
llvm-svn: 124942
| -rw-r--r-- | lldb/source/Host/common/Host.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Host/common/Host.cpp b/lldb/source/Host/common/Host.cpp index e453b2915d4..7ca26b46f45 100644 --- a/lldb/source/Host/common/Host.cpp +++ b/lldb/source/Host/common/Host.cpp @@ -19,13 +19,12 @@ #include <dlfcn.h> #include <errno.h> -#include <sys/sysctl.h> -#include <sys/wait.h> #if defined (__APPLE__) #include <dispatch/dispatch.h> #include <libproc.h> #include <mach-o/dyld.h> +#include <sys/sysctl.h> #endif using namespace lldb; |

