License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / arch / h8300 / include / asm / string.h
blob78e45bb2fef0dae2c2bed5dc348c3c54b9323182
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _H8300_STRING_H_
3 #define _H8300_STRING_H_
5 #ifdef __KERNEL__ /* only set these up for kernel code */
7 #include <asm/setup.h>
8 #include <asm/page.h>
10 #define __HAVE_ARCH_MEMSET
11 extern void *memset(void *s, int c, size_t count);
13 #define __HAVE_ARCH_MEMCPY
14 extern void *memcpy(void *d, const void *s, size_t count);
16 #endif /* KERNEL */
18 #endif