interception_mac.h revision 327952
1204076Spjd//===-- interception_mac.h --------------------------------------*- C++ -*-===//
2204076Spjd//
3204076Spjd//                     The LLVM Compiler Infrastructure
4204076Spjd//
5204076Spjd// This file is distributed under the University of Illinois Open Source
6204076Spjd// License. See LICENSE.TXT for details.
7204076Spjd//
8204076Spjd//===----------------------------------------------------------------------===//
9204076Spjd//
10204076Spjd// This file is a part of AddressSanitizer, an address sanity checker.
11204076Spjd//
12204076Spjd// Mac-specific interception methods.
13204076Spjd//===----------------------------------------------------------------------===//
14204076Spjd
15204076Spjd#if SANITIZER_MAC
16204076Spjd
17204076Spjd#if !defined(INCLUDED_FROM_INTERCEPTION_LIB)
18204076Spjd# error "interception_mac.h should be included from interception.h only"
19204076Spjd#endif
20204076Spjd
21204076Spjd#ifndef INTERCEPTION_MAC_H
22204076Spjd#define INTERCEPTION_MAC_H
23204076Spjd
24204076Spjd#define INTERCEPT_FUNCTION_MAC(func)
25204076Spjd#define INTERCEPT_FUNCTION_VER_MAC(func, symver)
26204076Spjd
27204076Spjd#endif  // INTERCEPTION_MAC_H
28204076Spjd#endif  // SANITIZER_MAC
29204076Spjd