diff options
| author | Kostya Serebryany <kcc@google.com> | 2012-01-09 22:45:05 +0000 |
|---|---|---|
| committer | Kostya Serebryany <kcc@google.com> | 2012-01-09 22:45:05 +0000 |
| commit | 3a55cfacf1a4b2b977416df30601cd336b7d1e3b (patch) | |
| tree | 284f94d827a7b9fc85a0a1623e9c81bd2af455e8 | |
| parent | d9cb2f13b366cbb5acbad7f2bb264f6f176600e6 (diff) | |
| download | bcm5719-llvm-3a55cfacf1a4b2b977416df30601cd336b7d1e3b.tar.gz bcm5719-llvm-3a55cfacf1a4b2b977416df30601cd336b7d1e3b.zip | |
[asan] temporary reinstate string.h/strings.h. Removal of those caused a Mac build failulre which I failed to observe before the commit
llvm-svn: 147810
| -rw-r--r-- | compiler-rt/lib/asan/asan_interceptors.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/lib/asan/asan_interceptors.cc b/compiler-rt/lib/asan/asan_interceptors.cc index 84e58cbd2de..1346bb9dbd3 100644 --- a/compiler-rt/lib/asan/asan_interceptors.cc +++ b/compiler-rt/lib/asan/asan_interceptors.cc @@ -26,6 +26,9 @@ #include <ctype.h> #include <dlfcn.h> +#include <string.h> +#include <strings.h> + namespace __asan { typedef void (*longjmp_f)(void *env, int val); |

