diff options
Diffstat (limited to 'libcxx/src/new.cpp')
-rw-r--r-- | libcxx/src/new.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/src/new.cpp b/libcxx/src/new.cpp index 9ad0612824b..964d87b89cc 100644 --- a/libcxx/src/new.cpp +++ b/libcxx/src/new.cpp @@ -7,13 +7,13 @@ // //===----------------------------------------------------------------------===// -#include <stdlib.h> -#include <cxxabi.h> +#include <stdlib.h> #include "new" #if __APPLE__ + #include <cxxabi.h> // On Darwin, there are two STL shared libraries and a lower level ABI // shared libray. The global holding the current new handler is // in the ABI library and named __cxa_new_handler. |