blob: 45123a4014475d0eb6fb4d73ab2c59d130e91144 [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#ifndef __AML_MALLOC_H__
#define __AML_MALLOC_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <stddef.h>
void *malloc(size_t size);
#ifdef __cplusplus
}
#endif
#endif