[ASan/Win tests] Bring back -GS- as SEH tests fail otherwise
[blocksruntime.git] / lib / lsan / lsan.h
blob3e7f76b081937cdcfbadc072b04d09a8d7dba377
1 //=-- lsan.h --------------------------------------------------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file is a part of LeakSanitizer.
11 // Private header for standalone LSan RTL.
13 //===----------------------------------------------------------------------===//
15 #include "sanitizer_common/sanitizer_flags.h"
16 #include "sanitizer_common/sanitizer_stacktrace.h"
18 namespace __lsan {
20 void InitializeInterceptors();
22 } // namespace __lsan
24 extern bool lsan_inited;
25 extern bool lsan_init_is_running;
27 extern "C" void __lsan_init();