commit | e376a65182ed92c18d38516cbe0a5f075b54bbc5 | [log] [tgz] |
---|---|---|
author | Daniel Malea <daniel.malea@intel.com> | Fri May 31 19:24:53 2013 +0000 |
committer | Daniel Malea <daniel.malea@intel.com> | Fri May 31 19:24:53 2013 +0000 |
tree | 7d8a2cbec70c4a6b97200d5bf771b9314328053f | |
parent | fae7ff12d20c491d030db50b8dc36a98adaee43c [diff] [blame] |
FreeBSD cmake build fixes. - missing #include <cstdlib> in Mangled.cpp - missing include dirs in FreeBSD CMakeLists.txt Patch by Ed Maste! llvm-svn: 183032
diff --git a/lldb/source/Core/Mangled.cpp b/lldb/source/Core/Mangled.cpp index 4852436..37812e0 100644 --- a/lldb/source/Core/Mangled.cpp +++ b/lldb/source/Core/Mangled.cpp
@@ -30,6 +30,7 @@ #include "lldb/Core/Timer.h" #include <ctype.h> #include <string.h> +#include <cstdlib> using namespace lldb_private;