1 #ifndef __ASM_SH_STRING_64_H 2 #define __ASM_SH_STRING_64_H 3 4 #ifdef __KERNEL__ 5 6 #define __HAVE_ARCH_MEMSET 7 extern void *memset(void *__s, int __c, size_t __count); 8 9 #define __HAVE_ARCH_MEMCPY 10 extern void *memcpy(void *dest, const void *src, size_t count); 11 12 #define __HAVE_ARCH_STRLEN 13 extern size_t strlen(const char *); 14 15 #define __HAVE_ARCH_STRCPY 16 extern char *strcpy(char *__dest, const char *__src); 17 18 #endif /* __KERNEL__ */ 19 20 #endif /* __ASM_SH_STRING_64_H */ 21