Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[linux-2.6.git] / arch / metag / include / asm / string.h
blob53e3806eee04f5894dc284f4bc733819a9e65c44
1 #ifndef _METAG_STRING_H_
2 #define _METAG_STRING_H_
4 #define __HAVE_ARCH_MEMSET
5 extern void *memset(void *__s, int __c, size_t __count);
7 #define __HAVE_ARCH_MEMCPY
8 void *memcpy(void *__to, __const__ void *__from, size_t __n);
10 #define __HAVE_ARCH_MEMMOVE
11 extern void *memmove(void *__dest, __const__ void *__src, size_t __n);
13 #endif /* _METAG_STRING_H_ */