blob: 45123a4014475d0eb6fb4d73ab2c59d130e91144 [file] [log] [blame]
Xiaohu.Huang60a7f2f2021-10-25 15:40:57 +08001/*
yang.lib06e0a82022-01-10 17:35:09 +08002 * Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
Xiaohu.Huang60a7f2f2021-10-25 15:40:57 +08003 *
yang.lib06e0a82022-01-10 17:35:09 +08004 * SPDX-License-Identifier: MIT
Xiaohu.Huang60a7f2f2021-10-25 15:40:57 +08005 */
6
7#ifndef __AML_MALLOC_H__
8#define __AML_MALLOC_H__
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14#include <stddef.h>
15
16void *malloc(size_t size);
17
Xiaohu.Huang60a7f2f2021-10-25 15:40:57 +080018#ifdef __cplusplus
19}
20#endif
21
22#endif