MINI2440: Update config to reflect NOR support
[u-boot-openmoko/mini2440.git] / include / asm-nios / string.h
blobfa33275010fad375c5a6a9a1bca71d03935efc43
1 #ifndef __ASM_NIOS_STRING_H
2 #define __ASM_NIOS_STRING_H
4 #undef __HAVE_ARCH_STRRCHR
5 extern char * strrchr(const char * s, int c);
7 #undef __HAVE_ARCH_STRCHR
8 extern char * strchr(const char * s, int c);
10 #undef __HAVE_ARCH_MEMCPY
11 extern void * memcpy(void *, const void *, __kernel_size_t);
13 #undef __HAVE_ARCH_MEMMOVE
14 extern void * memmove(void *, const void *, __kernel_size_t);
16 #undef __HAVE_ARCH_MEMCHR
17 extern void * memchr(const void *, int, __kernel_size_t);
19 #undef __HAVE_ARCH_MEMSET
20 extern void * memset(void *, int, __kernel_size_t);
22 #undef __HAVE_ARCH_MEMZERO
23 extern void memzero(void *ptr, __kernel_size_t n);
25 #endif