commit | c93cdefa306f0ec265af031750148ed82b122150 | [log] [tgz] |
---|---|---|
author | Michael J. Spencer <bigcheesegs@gmail.com> | Fri May 24 20:54:11 2013 +0000 |
committer | Michael J. Spencer <bigcheesegs@gmail.com> | Fri May 24 20:54:11 2013 +0000 |
tree | 63c78b1ce4e11c13af572b4b94cfec2c92456b14 | |
parent | a0cfb8f21baf94fb8c40ff90bfc043de1ef700ec [diff] [blame] |
Add missing header for atexit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182672 91177308-0d34-0410-b5e6-96231b3b80d8
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.