diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2013-05-24 20:54:11 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2013-05-24 20:54:11 +0000 |
commit | c93cdefa306f0ec265af031750148ed82b122150 (patch) | |
tree | 63c78b1ce4e11c13af572b4b94cfec2c92456b14 /lib/ExecutionEngine | |
parent | a0cfb8f21baf94fb8c40ff90bfc043de1ef700ec (diff) | |
download | external_llvm-c93cdefa306f0ec265af031750148ed82b122150.zip external_llvm-c93cdefa306f0ec265af031750148ed82b122150.tar.gz external_llvm-c93cdefa306f0ec265af031750148ed82b122150.tar.bz2 |
Add missing header for atexit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182672 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r-- | lib/ExecutionEngine/RTDyldMemoryManager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ExecutionEngine/RTDyldMemoryManager.cpp b/lib/ExecutionEngine/RTDyldMemoryManager.cpp index 0372bb6..6eee0d5 100644 --- a/lib/ExecutionEngine/RTDyldMemoryManager.cpp +++ b/lib/ExecutionEngine/RTDyldMemoryManager.cpp @@ -16,6 +16,8 @@ #include "llvm/Support/DynamicLibrary.h" #include "llvm/Support/ErrorHandling.h" +#include <cstdlib> + #ifdef __linux__ // These includes used by RTDyldMemoryManager::getPointerToNamedFunction() // for Glibc trickery. See comments in this function for more information. |