diff options
author | Anna Zaks <ganna@apple.com> | 2015-10-27 20:12:55 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2015-10-27 20:12:55 +0000 |
commit | 55f195f5aeca954a72244cc56c845cd39c94e3ec (patch) | |
tree | e21378e072d2b7582d0d6f36a5c6afeed12b9a13 | |
parent | ab1aa081911fc52c840215499995d0dcde7a8756 (diff) | |
download | bcm5719-llvm-55f195f5aeca954a72244cc56c845cd39c94e3ec.tar.gz bcm5719-llvm-55f195f5aeca954a72244cc56c845cd39c94e3ec.zip |
[asan] Sort headers.
llvm-svn: 251446
-rw-r--r-- | compiler-rt/lib/asan/asan_mac.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler-rt/lib/asan/asan_mac.cc b/compiler-rt/lib/asan/asan_mac.cc index 0f0f9bb0875..8e23c71be5a 100644 --- a/compiler-rt/lib/asan/asan_mac.cc +++ b/compiler-rt/lib/asan/asan_mac.cc @@ -33,17 +33,17 @@ extern "C" { #endif #include <dlfcn.h> // for dladdr() +#include <fcntl.h> +#include <libkern/OSAtomic.h> #include <mach-o/dyld.h> #include <mach-o/loader.h> +#include <pthread.h> +#include <stdlib.h> // for free() #include <sys/mman.h> #include <sys/resource.h> #include <sys/sysctl.h> #include <sys/ucontext.h> -#include <fcntl.h> -#include <pthread.h> -#include <stdlib.h> // for free() #include <unistd.h> -#include <libkern/OSAtomic.h> namespace __asan { |