]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/h8300/include/asm/string.h
Merge branches 'arm/omap', 'arm/msm', 'arm/smmu', 'arm/tegra', 'x86/vt-d', 'x86/amd...
[karo-tx-linux.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