blob: 5c3be1005a699e4e794bb6d4a290a7700b9cb21a [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#ifndef __AML_MEMSET_H__
#define __AML_MEMSET_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <stddef.h>
#include "common.h"
void *memset(void *dest, int c, size_t len);
#ifdef __cplusplus
}
#endif
#endif