2019-10-23 13:52:22 -04:00
|
|
|
//===-- interception_mac.cpp ------------------------------------*- C++ -*-===//
|
2012-07-30 06:58:13 -04:00
|
|
|
//
|
2019-08-20 16:51:06 -04:00
|
|
|
// 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
|
2012-07-30 06:58:13 -04:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
//
|
|
|
|
|
// This file is a part of AddressSanitizer, an address sanity checker.
|
|
|
|
|
//
|
|
|
|
|
// Mac-specific interception methods.
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
2013-01-18 15:06:45 -05:00
|
|
|
#include "interception.h"
|
2012-07-30 06:58:13 -04:00
|
|
|
|
2017-12-18 15:11:54 -05:00
|
|
|
#if SANITIZER_MAC
|
2012-07-30 06:58:13 -04:00
|
|
|
|
2017-12-18 15:11:54 -05:00
|
|
|
#endif // SANITIZER_MAC
|