1/*
2 * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6/**
7 * Multi heap function
8 */
9
10PROVIDE (multi_heap_malloc = multi_heap_malloc_impl);
11PROVIDE (multi_heap_free = multi_heap_free_impl);
12PROVIDE (multi_heap_realloc = multi_heap_realloc_impl);
13PROVIDE (multi_heap_get_allocated_size = multi_heap_get_allocated_size_impl);
14PROVIDE (multi_heap_register = multi_heap_register_impl);
15PROVIDE (multi_heap_get_info = multi_heap_get_info_impl);
16PROVIDE (multi_heap_free_size = multi_heap_free_size_impl);
17PROVIDE (multi_heap_minimum_free_size = multi_heap_minimum_free_size_impl);
18PROVIDE (multi_heap_get_block_address = multi_heap_get_block_address_impl);
19PROVIDE (multi_heap_aligned_alloc = multi_heap_aligned_alloc_impl);
20PROVIDE (multi_heap_aligned_free = multi_heap_aligned_free_impl);
21PROVIDE (multi_heap_check = multi_heap_check);
22PROVIDE (multi_heap_set_lock = multi_heap_set_lock);
23PROVIDE (multi_heap_internal_lock = multi_heap_internal_lock);
24PROVIDE (multi_heap_internal_unlock = multi_heap_internal_unlock);
25