yang.li | b06e0a8 | 2022-01-10 17:35:09 +0800 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: MIT | ||||
5 | */ | ||||
6 | |||||
Xiaohu.Huang | 60a7f2f | 2021-10-25 15:40:57 +0800 | [diff] [blame] | 7 | #include "aml_malloc.h" |
8 | #include <FreeRTOS.h> | ||||
9 | |||||
10 | void *malloc(size_t size) | ||||
11 | { | ||||
12 | return pvPortMalloc(size); | ||||
13 | } |