From: Jeroen Hofstee Date: Wed, 30 Jul 2014 19:54:53 +0000 (+0200) Subject: eabi_compat: add __aeabi_memcpy __aeabi_memset X-Git-Tag: v2014.10-rc3~116^2~5 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f2cbb037a73bd91e99bbb2717e532a88929b2e12;p=u-boot eabi_compat: add __aeabi_memcpy __aeabi_memset cc: Albert ARIBAUD Signed-off-by: Jeroen Hofstee --- diff --git a/arch/arm/lib/eabi_compat.c b/arch/arm/lib/eabi_compat.c index 10d19333fc..a2cb06e49a 100644 --- a/arch/arm/lib/eabi_compat.c +++ b/arch/arm/lib/eabi_compat.c @@ -20,8 +20,19 @@ int raise (int signum) /* Dummy function to avoid linker complaints */ void __aeabi_unwind_cpp_pr0(void) { -}; +} void __aeabi_unwind_cpp_pr1(void) { -}; +} + +/* Copy memory like memcpy, but no return value required. */ +void __aeabi_memcpy(void *dest, const void *src, size_t n) +{ + (void) memcpy(dest, src, n); +} + +void __aeabi_memset(void *dest, size_t n, int c) +{ + (void) memset(dest, c, n); +}