interception_mac.h 816 B

123456789101112131415161718192021222324252627
  1. //===-- interception_mac.h --------------------------------------*- C++ -*-===//
  2. //
  3. // This file is distributed under the University of Illinois Open Source
  4. // License. See LICENSE.TXT for details.
  5. //
  6. //===----------------------------------------------------------------------===//
  7. //
  8. // This file is a part of AddressSanitizer, an address sanity checker.
  9. //
  10. // Mac-specific interception methods.
  11. //===----------------------------------------------------------------------===//
  12. #ifdef __APPLE__
  13. #if !defined(INCLUDED_FROM_INTERCEPTION_LIB)
  14. # error "interception_mac.h should be included from interception.h only"
  15. #endif
  16. #ifndef INTERCEPTION_MAC_H
  17. #define INTERCEPTION_MAC_H
  18. #define INTERCEPT_FUNCTION_MAC(func)
  19. #define INTERCEPT_FUNCTION_VER_MAC(func, symver)
  20. #endif // INTERCEPTION_MAC_H
  21. #endif // __APPLE__