blob: e2b139fe37f9c24f80911afc543aa62e8a9c21fe [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#include "aml_malloc.h"
#include <FreeRTOS.h>
void *malloc(size_t size)
{
return pvPortMalloc(size);
}