1 //===-- sanitizer_persistent_allocator.cc -----------------------*- 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 shared between AddressSanitizer and ThreadSanitizer 9 // run-time libraries. 10 //===----------------------------------------------------------------------===// 11 #include "sanitizer_persistent_allocator.h" 12 13 namespace __sanitizer { 14 15 PersistentAllocator thePersistentAllocator; 16 17 } // namespace __sanitizer 18