patch-2.3.99-pre9 linux/include/asm-arm/string.h
Next file: linux/include/asm-arm/unistd.h
Previous file: linux/include/asm-arm/softirq.h
Back to the patch index
Back to the overall index
- Lines: 24
- Date:
Mon May 15 12:00:34 2000
- Orig file:
v2.3.99-pre8/linux/include/asm-arm/string.h
- Orig date:
Wed Apr 26 16:34:09 2000
diff -u --recursive --new-file v2.3.99-pre8/linux/include/asm-arm/string.h linux/include/asm-arm/string.h
@@ -13,12 +13,17 @@
extern char * strchr(const char * s, int c);
#define __HAVE_ARCH_MEMCPY
+extern void * memcpy(void *, const void *, __kernel_size_t);
+
#define __HAVE_ARCH_MEMMOVE
+extern void * memmove(void *, const void *, __kernel_size_t);
+
#define __HAVE_ARCH_MEMCHR
-extern void * memchr(const void *cs, int c, size_t count);
+extern void * memchr(const void *, int, __kernel_size_t);
#define __HAVE_ARCH_MEMZERO
#define __HAVE_ARCH_MEMSET
+extern void * memset(void *, int, __kernel_size_t);
extern void __memzero(void *ptr, __kernel_size_t n);
@@ -36,4 +41,3 @@
#define memzero(p,n) ({ if ((n) != 0) __memzero((p),(n)); (p); })
#endif
-
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)