diff options
Diffstat (limited to 'contrib/llvm-project/compiler-rt/lib/rtsan/rtsan_stack.h')
-rw-r--r-- | contrib/llvm-project/compiler-rt/lib/rtsan/rtsan_stack.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/contrib/llvm-project/compiler-rt/lib/rtsan/rtsan_stack.h b/contrib/llvm-project/compiler-rt/lib/rtsan/rtsan_stack.h new file mode 100644 index 000000000000..cecdd43045db --- /dev/null +++ b/contrib/llvm-project/compiler-rt/lib/rtsan/rtsan_stack.h @@ -0,0 +1,15 @@ +//===--- rtsan_stack.h - Realtime Sanitizer ---------------------*- C++ -*-===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// +// +//===----------------------------------------------------------------------===// + +#pragma once + +namespace __rtsan { +void PrintStackTrace(); +} // namespace __rtsan |