Linux-libre 3.14.42-gnu
[librecmc/linux-libre.git] / arch / metag / include / asm / string.h
1 #ifndef _METAG_STRING_H_
2 #define _METAG_STRING_H_
3
4 #define __HAVE_ARCH_MEMSET
5 extern void *memset(void *__s, int __c, size_t __count);
6
7 #define __HAVE_ARCH_MEMCPY
8 void *memcpy(void *__to, __const__ void *__from, size_t __n);
9
10 #define __HAVE_ARCH_MEMMOVE
11 extern void *memmove(void *__dest, __const__ void *__src, size_t __n);
12
13 #endif /* _METAG_STRING_H_ */