projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c65a2ab
)
eabi_compat: add __aeabi_memcpy __aeabi_memset
author
Jeroen Hofstee
<jeroen@myspectrum.nl>
Wed, 30 Jul 2014 19:54:53 +0000
(21:54 +0200)
committer
Albert ARIBAUD
<albert.u.boot@aribaud.net>
Tue, 9 Sep 2014 11:51:11 +0000
(13:51 +0200)
cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
arch/arm/lib/eabi_compat.c
patch
|
blob
|
history
diff --git
a/arch/arm/lib/eabi_compat.c
b/arch/arm/lib/eabi_compat.c
index 10d19333fc1306bb87daac5c867a7f84e2927ee7..a2cb06e49ae0248c2287a4a5538dccfad6e54674 100644
(file)
--- 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);
+}