]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blob - arch/h8300/include/asm/string.h
Merge branches 'for-4.3/chicony', 'for-4.3/cp2112', 'for-4.3/i2c-hid', 'for-4.3/lenov...
[mirror_ubuntu-focal-kernel.git] / arch / h8300 / include / asm / string.h
1 #ifndef _H8300_STRING_H_
2 #define _H8300_STRING_H_
3
4 #ifdef __KERNEL__ /* only set these up for kernel code */
5
6 #include <asm/setup.h>
7 #include <asm/page.h>
8
9 #define __HAVE_ARCH_MEMSET
10 extern void *memset(void *s, int c, size_t count);
11
12 #define __HAVE_ARCH_MEMCPY
13 extern void *memcpy(void *d, const void *s, size_t count);
14
15 #endif /* KERNEL */
16
17 #endif