]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - arch/arm/lib/eabi_compat.c
eabi_compat: add __aeabi_memcpy __aeabi_memset
[karo-tx-uboot.git] / arch / arm / lib / eabi_compat.c
index 10d19333fc1306bb87daac5c867a7f84e2927ee7..a2cb06e49ae0248c2287a4a5538dccfad6e54674 100644 (file)
@@ -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);
+}