1*fe6060f1SDimitry Andric //===-- dfsan_chained_origin_depot.h ----------------------------*- C++ -*-===//
2*fe6060f1SDimitry Andric //
3*fe6060f1SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*fe6060f1SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
5*fe6060f1SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*fe6060f1SDimitry Andric //
7*fe6060f1SDimitry Andric //===----------------------------------------------------------------------===//
8*fe6060f1SDimitry Andric //
9*fe6060f1SDimitry Andric // This file is a part of DataFlowSanitizer.
10*fe6060f1SDimitry Andric //
11*fe6060f1SDimitry Andric // A storage for chained origins.
12*fe6060f1SDimitry Andric //===----------------------------------------------------------------------===//
13*fe6060f1SDimitry Andric 
14*fe6060f1SDimitry Andric #ifndef DFSAN_CHAINED_ORIGIN_DEPOT_H
15*fe6060f1SDimitry Andric #define DFSAN_CHAINED_ORIGIN_DEPOT_H
16*fe6060f1SDimitry Andric 
17*fe6060f1SDimitry Andric #include "sanitizer_common/sanitizer_chained_origin_depot.h"
18*fe6060f1SDimitry Andric #include "sanitizer_common/sanitizer_common.h"
19*fe6060f1SDimitry Andric 
20*fe6060f1SDimitry Andric namespace __dfsan {
21*fe6060f1SDimitry Andric 
22*fe6060f1SDimitry Andric ChainedOriginDepot* GetChainedOriginDepot();
23*fe6060f1SDimitry Andric 
24*fe6060f1SDimitry Andric }  // namespace __dfsan
25*fe6060f1SDimitry Andric 
26*fe6060f1SDimitry Andric #endif  // DFSAN_CHAINED_ORIGIN_DEPOT_H
27