]> git.ipfire.org Git - thirdparty/linux.git/blame - arch/metag/include/asm/string.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[thirdparty/linux.git] / arch / metag / include / asm / string.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
086e9dc0
JH
2#ifndef _METAG_STRING_H_
3#define _METAG_STRING_H_
4
5#define __HAVE_ARCH_MEMSET
6extern void *memset(void *__s, int __c, size_t __count);
7
8#define __HAVE_ARCH_MEMCPY
9void *memcpy(void *__to, __const__ void *__from, size_t __n);
10
11#define __HAVE_ARCH_MEMMOVE
12extern void *memmove(void *__dest, __const__ void *__src, size_t __n);
13
14#endif /* _METAG_STRING_H_ */