]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/sh/include/asm/string_64.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / arch / sh / include / asm / string_64.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
a23ba435
PM
2#ifndef __ASM_SH_STRING_64_H
3#define __ASM_SH_STRING_64_H
1da177e4 4
4466b20c
PM
5#ifdef __KERNEL__
6
7#define __HAVE_ARCH_MEMSET
8extern void *memset(void *__s, int __c, size_t __count);
1da177e4
LT
9
10#define __HAVE_ARCH_MEMCPY
1da177e4
LT
11extern void *memcpy(void *dest, const void *src, size_t count);
12
4466b20c
PM
13#define __HAVE_ARCH_STRLEN
14extern size_t strlen(const char *);
15
16#define __HAVE_ARCH_STRCPY
17extern char *strcpy(char *__dest, const char *__src);
18
19#endif /* __KERNEL__ */
20
a23ba435 21#endif /* __ASM_SH_STRING_64_H */