blob: 742007172624199800510a72c37cb064c72a5c2e [file] [log] [blame]
Paul Mundta23ba432007-11-28 20:19:38 +09001#ifndef __ASM_SH_STRING_64_H
2#define __ASM_SH_STRING_64_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
Paul Mundt4466b202008-12-12 16:34:44 +09004#ifdef __KERNEL__
5
6#define __HAVE_ARCH_MEMSET
7extern void *memset(void *__s, int __c, size_t __count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9#define __HAVE_ARCH_MEMCPY
Linus Torvalds1da177e2005-04-16 15:20:36 -070010extern void *memcpy(void *dest, const void *src, size_t count);
11
Paul Mundt4466b202008-12-12 16:34:44 +090012#define __HAVE_ARCH_STRLEN
13extern size_t strlen(const char *);
14
15#define __HAVE_ARCH_STRCPY
16extern char *strcpy(char *__dest, const char *__src);
17
18#endif /* __KERNEL__ */
19
Paul Mundta23ba432007-11-28 20:19:38 +090020#endif /* __ASM_SH_STRING_64_H */