Add header guard to asan_report.h

llvm-svn: 338700
This commit is contained in:
Filipe Cabecinhas 2018-08-02 11:05:07 +00:00
parent 6fe30771aa
commit 440e96f2f7
1 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,9 @@
// ASan-private header for error reporting functions.
//===----------------------------------------------------------------------===//
#ifndef ASAN_REPORT_H
#define ASAN_REPORT_H
#include "asan_allocator.h"
#include "asan_internal.h"
#include "asan_thread.h"
@ -92,3 +95,4 @@ void ReportMacCfReallocUnknown(uptr addr, uptr zone_ptr,
BufferedStackTrace *stack);
} // namespace __asan
#endif // ASAN_REPORT_H