summaryrefslogtreecommitdiff
path: root/include/asm-mips
diff options
context:
space:
mode:
authorStefan Roese <[email protected]>2007-10-27 13:43:40 +0200
committerStefan Roese <[email protected]>2007-10-27 13:43:40 +0200
commit49801028715cd8bc22863cdfc0ee7919b7a6af4b (patch)
treeb7344561054c6da1886e0622716ad6da9bb2325b /include/asm-mips
parent20d500d531a6b971ce6cc1bf191cb0092cdc0afc (diff)
parentd78791ae914d4e7c5edca1cdad73b3dc81a4eb82 (diff)
Merge git://www.denx.de/git/u-boot
Diffstat (limited to 'include/asm-mips')
-rw-r--r--include/asm-mips/string.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/asm-mips/string.h b/include/asm-mips/string.h
index c42ad82c477..579a591e629 100644
--- a/include/asm-mips/string.h
+++ b/include/asm-mips/string.h
@@ -19,21 +19,21 @@
extern char *strcpy(char *__dest, __const__ char *__src);
#undef __HAVE_ARCH_STRNCPY
-extern char *strncpy(char *__dest, __const__ char *__src, size_t __n);
+extern char *strncpy(char *__dest, __const__ char *__src, __kernel_size_t __n);
#undef __HAVE_ARCH_STRCMP
extern int strcmp(__const__ char *__cs, __const__ char *__ct);
#undef __HAVE_ARCH_STRNCMP
-extern int strncmp(__const__ char *__cs, __const__ char *__ct, size_t __count);
+extern int strncmp(__const__ char *__cs, __const__ char *__ct, __kernel_size_t __count);
#undef __HAVE_ARCH_MEMSET
-extern void *memset(void *__s, int __c, size_t __count);
+extern void *memset(void *__s, int __c, __kernel_size_t __count);
#undef __HAVE_ARCH_MEMCPY
-extern void *memcpy(void *__to, __const__ void *__from, size_t __n);
+extern void *memcpy(void *__to, __const__ void *__from, __kernel_size_t __n);
#undef __HAVE_ARCH_MEMMOVE
-extern void *memmove(void *__dest, __const__ void *__src, size_t __n);
+extern void *memmove(void *__dest, __const__ void *__src, __kernel_size_t __n);
#endif /* _ASM_STRING_H */