blob: 58add8b9a66341bdd33ce20cde8b662c0060a1e6 [file] [log] [blame]
Avi Drissmane4622aa2022-09-08 20:36:061// Copyright 2016 The Chromium Authors
primianobe9d6fc2016-01-12 22:16:112// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Lei Zhang6e174342021-04-21 03:57:205#ifndef BASE_ALLOCATOR_ALLOCATOR_CHECK_H_
6#define BASE_ALLOCATOR_ALLOCATOR_CHECK_H_
primianobe9d6fc2016-01-12 22:16:117
8#include "base/base_export.h"
9
10namespace base {
11namespace allocator {
12
13BASE_EXPORT bool IsAllocatorInitialized();
14
15} // namespace allocator
16} // namespace base
17
Lei Zhang6e174342021-04-21 03:57:2018#endif // BASE_ALLOCATOR_ALLOCATOR_CHECK_H_