d: Add test for PR d/108167 to the testsuite [PR108167]
[official-gcc.git] / libsanitizer / interception / interception_mac.h
blob26079518c649b38524e68868b706b722cdd32628
1 //===-- interception_mac.h --------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file is a part of AddressSanitizer, an address sanity checker.
11 // Mac-specific interception methods.
12 //===----------------------------------------------------------------------===//
14 #if SANITIZER_APPLE
16 #if !defined(INCLUDED_FROM_INTERCEPTION_LIB)
17 # error "interception_mac.h should be included from interception.h only"
18 #endif
20 #ifndef INTERCEPTION_MAC_H
21 #define INTERCEPTION_MAC_H
23 #define INTERCEPT_FUNCTION_MAC(func)
24 #define INTERCEPT_FUNCTION_VER_MAC(func, symver)
26 #endif // INTERCEPTION_MAC_H
27 #endif // SANITIZER_APPLE