diff options
author | Charles Davis <cdavis5x@gmail.com> | 2013-08-27 05:04:57 +0000 |
---|---|---|
committer | Charles Davis <cdavis5x@gmail.com> | 2013-08-27 05:04:57 +0000 |
commit | 510938e5283ac05b0b9fa52e0bd39695ca0f6531 (patch) | |
tree | d24d6641cc10cd002f530ffcbc285bfd26a1254d /lldb/source/Core/Error.cpp | |
parent | 237ad9741a9b70dc984a4adecd85f68510263995 (diff) | |
download | bcm5719-llvm-510938e5283ac05b0b9fa52e0bd39695ca0f6531.tar.gz bcm5719-llvm-510938e5283ac05b0b9fa52e0bd39695ca0f6531.zip |
Fix some names in the wake of my Mach-O changes to LLVM.
llvm-svn: 189317
Diffstat (limited to 'lldb/source/Core/Error.cpp')
-rw-r--r-- | lldb/source/Core/Error.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/source/Core/Error.cpp b/lldb/source/Core/Error.cpp index 9ba4b1ef5f2..9556c55644b 100644 --- a/lldb/source/Core/Error.cpp +++ b/lldb/source/Core/Error.cpp @@ -8,7 +8,7 @@ //===----------------------------------------------------------------------===// // C Includes -#include <errno.h> +#include <mach/mach.h> // C++ Includes // Other libraries and framework includes @@ -16,9 +16,8 @@ #include "lldb/Core/Error.h" #include "lldb/Core/Log.h" #include "llvm/ADT/SmallVector.h" +#include <cerrno> #include <cstdarg> -#include <cstdlib> -#include <cstring> #if defined (__arm__) && defined (__APPLE__) #include <SpringBoardServices/SpringBoardServer.h> |