xref: /netbsd-src/external/gpl3/gcc/dist/libsanitizer/interception/interception_mac.cpp (revision ff6d591ca308ed13e9c5ae142cf113a246c2cdc6)
1*ff6d591cSmrg //===-- interception_mac.cpp ------------------------------------*- C++ -*-===//
2*ff6d591cSmrg //
3*ff6d591cSmrg // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*ff6d591cSmrg // See https://llvm.org/LICENSE.txt for license information.
5*ff6d591cSmrg // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*ff6d591cSmrg //
7*ff6d591cSmrg //===----------------------------------------------------------------------===//
8*ff6d591cSmrg //
9*ff6d591cSmrg // This file is a part of AddressSanitizer, an address sanity checker.
10*ff6d591cSmrg //
11*ff6d591cSmrg // Mac-specific interception methods.
12*ff6d591cSmrg //===----------------------------------------------------------------------===//
13*ff6d591cSmrg 
14*ff6d591cSmrg #include "interception.h"
15*ff6d591cSmrg 
16*ff6d591cSmrg #if SANITIZER_MAC
17*ff6d591cSmrg 
18*ff6d591cSmrg #endif  // SANITIZER_MAC
19