diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2011-12-27 22:46:39 +1100 |
---|---|---|
committer | Graeme Russ <graeme.russ@gmail.com> | 2012-01-02 03:58:46 +1100 |
commit | b2c2a038426f651c574a97a02563f78c2dceaa89 (patch) | |
tree | 4798a22f07e23c15f92e2f5608f337ed378c6668 /arch/x86/include/asm/string.h | |
parent | bfcc40bb09b05c90cc3b1496abb270eb8aa72134 (diff) | |
download | u-boot-imx-b2c2a038426f651c574a97a02563f78c2dceaa89.zip u-boot-imx-b2c2a038426f651c574a97a02563f78c2dceaa89.tar.gz u-boot-imx-b2c2a038426f651c574a97a02563f78c2dceaa89.tar.bz2 |
x86: Import glibc memcpy implementation
Taken from glibc version 2.14.90
--
Changes for v2:
- None
Diffstat (limited to 'arch/x86/include/asm/string.h')
-rw-r--r-- | arch/x86/include/asm/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/string.h b/arch/x86/include/asm/string.h index 3aa6c11..0ad612f 100644 --- a/arch/x86/include/asm/string.h +++ b/arch/x86/include/asm/string.h @@ -14,7 +14,7 @@ extern char * strrchr(const char * s, int c); #undef __HAVE_ARCH_STRCHR extern char * strchr(const char * s, int c); -#undef __HAVE_ARCH_MEMCPY +#define __HAVE_ARCH_MEMCPY extern void * memcpy(void *, const void *, __kernel_size_t); #undef __HAVE_ARCH_MEMMOVE |