diff options
Diffstat (limited to 'include/asm-parisc/string.h')
-rw-r--r-- | include/asm-parisc/string.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/asm-parisc/string.h b/include/asm-parisc/string.h new file mode 100644 index 000000000000..eda01be65e35 --- /dev/null +++ b/include/asm-parisc/string.h | |||
@@ -0,0 +1,10 @@ | |||
1 | #ifndef _PA_STRING_H_ | ||
2 | #define _PA_STRING_H_ | ||
3 | |||
4 | #define __HAVE_ARCH_MEMSET | ||
5 | extern void * memset(void *, int, size_t); | ||
6 | |||
7 | #define __HAVE_ARCH_MEMCPY | ||
8 | void * memcpy(void * dest,const void *src,size_t count); | ||
9 | |||
10 | #endif | ||