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