blob: e2b139fe37f9c24f80911afc543aa62e8a9c21fe [file] [log] [blame]
yang.lib06e0a82022-01-10 17:35:09 +08001/*
2 * Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
Xiaohu.Huang60a7f2f2021-10-25 15:40:57 +08007#include "aml_malloc.h"
8#include <FreeRTOS.h>
9
10void *malloc(size_t size)
11{
12 return pvPortMalloc(size);
13}