Warning: This file is not a C or C++ file. It does not have highlighting.
| 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
|---|---|
| 2 | |
| 3 | #ifndef __ABI_CSKY_STRING_H |
| 4 | #define __ABI_CSKY_STRING_H |
| 5 | |
| 6 | #define __HAVE_ARCH_MEMCPY |
| 7 | extern void *memcpy(void *, const void *, __kernel_size_t); |
| 8 | |
| 9 | #define __HAVE_ARCH_MEMMOVE |
| 10 | extern void *memmove(void *, const void *, __kernel_size_t); |
| 11 | |
| 12 | #define __HAVE_ARCH_MEMSET |
| 13 | extern void *memset(void *, int, __kernel_size_t); |
| 14 | |
| 15 | #endif /* __ABI_CSKY_STRING_H */ |
| 16 |
Warning: This file is not a C or C++ file. It does not have highlighting.
