[llvm-commits] [compiler-rt] r147810 - /compiler-rt/trunk/lib/asan/asan_interceptors.cc

Kostya Serebryany kcc at google.com
Mon Jan 9 14:45:05 PST 2012


Author: kcc
Date: Mon Jan  9 16:45:05 2012
New Revision: 147810

URL: http://llvm.org/viewvc/llvm-project?rev=147810&view=rev
Log:
[asan] temporary reinstate string.h/strings.h. Removal of those caused a Mac build failulre which I failed to observe before the commit

Modified:
    compiler-rt/trunk/lib/asan/asan_interceptors.cc

Modified: compiler-rt/trunk/lib/asan/asan_interceptors.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_interceptors.cc?rev=147810&r1=147809&r2=147810&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_interceptors.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_interceptors.cc Mon Jan  9 16:45:05 2012
@@ -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);





More information about the llvm-commits mailing list