1353944Sdim//===-- sanitizer_persistent_allocator.cpp ----------------------*- C++ -*-===//
2353944Sdim//
3353944Sdim// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4353944Sdim// See https://llvm.org/LICENSE.txt for license information.
5353944Sdim// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6353944Sdim//
7353944Sdim//===----------------------------------------------------------------------===//
8353944Sdim//
9353944Sdim// This file is shared between AddressSanitizer and ThreadSanitizer
10353944Sdim// run-time libraries.
11353944Sdim//===----------------------------------------------------------------------===//
12353944Sdim#include "sanitizer_persistent_allocator.h"
13353944Sdim
14353944Sdimnamespace __sanitizer {
15353944Sdim
16353944SdimPersistentAllocator thePersistentAllocator;
17353944Sdim
18353944Sdim}  // namespace __sanitizer
19