[llvm-commits] [compiler-rt] r167577 - /compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc

Alexey Samsonov samsonov at google.com
Thu Nov 8 05:08:42 PST 2012


Author: samsonov
Date: Thu Nov  8 07:08:41 2012
New Revision: 167577

URL: http://llvm.org/viewvc/llvm-project?rev=167577&view=rev
Log:
[Sanitizer] try to fix Windows bot - include stdlib.h for abort/_exit functions

Modified:
    compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc

Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc?rev=167577&r1=167576&r2=167577&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc Thu Nov  8 07:08:41 2012
@@ -14,6 +14,7 @@
 #ifdef _WIN32
 #define WIN32_LEAN_AND_MEAN
 #define NOGDI
+#include <stdlib.h>
 #include <windows.h>
 
 #include "sanitizer_common.h"





More information about the llvm-commits mailing list