summaryrefslogtreecommitdiff
path: root/include/system/string.h
blob: 21e46c1d483a2d79a51fe4bb7b2996f16a543cda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: BSD-2-Clause-Patent
#ifdef SHIM_UNIT_TEST
#include_next <string.h>
#else
#ifndef _STRING_H
#define _STRING_H

#include <stddef.h>

__typeof__(__builtin_memset) memset;
__typeof__(__builtin_memcpy) memcpy;

#endif /* _STRING_H */
#endif