These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / 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