asan_report.h revision 7354509ec8a37262c5ea0c54f99afee8a5116ce5
1//===-- asan_report.h -------------------------------------------*- C++ -*-===//
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 AddressSanitizer, an address sanity checker.
11//
12// ASan-private header for error reporting functions.
13//===----------------------------------------------------------------------===//
14
15#include "asan_internal.h"
16
17namespace __asan {
18
19void ReportSIGSEGV(uptr pc, uptr sp, uptr bp, uptr addr);
20
21}  // namespace __asan
22