1 //===-- asan_activation.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 // ASan activation/deactivation logic. 11 //===----------------------------------------------------------------------===// 12 13 #ifndef ASAN_ACTIVATION_H 14 #define ASAN_ACTIVATION_H 15 16 namespace __asan { 17 void AsanDeactivate(); 18 void AsanActivate(); 19 } // namespace __asan 20 21 #endif // ASAN_ACTIVATION_H 22