sanitizer_symbolizer_win.cc revision c1a1ed62228288155459d39194995a36aca4a8a6
1//===-- sanitizer_symbolizer_win.cc ---------------------------------------===//
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 shared between AddressSanitizer and ThreadSanitizer
11// run-time libraries.
12// Windows-specific implementation of symbolizer parts.
13//===----------------------------------------------------------------------===//
14
15#include "sanitizer_platform.h"
16#if SANITIZER_WINDOWS
17#include "sanitizer_symbolizer.h"
18
19namespace __sanitizer {
20
21Symbolizer *Symbolizer::PlatformInit(const char *path_to_external) { return 0; }
22
23}  // namespace __sanitizer
24
25#endif  // _WIN32
26