From e617b9eea9d45b170eabadf5ca96ca0536c538be Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 22 Jan 2016 00:02:21 +0000 Subject: move arm-specific translation units out of arch/arm/src, to src/*/arm this is possible with the new build system that allows src/*/$(ARCH)/* files which do not shadow a file in the parent directory, and yields a more logical organization. eventually it will be possible to remove arch/*/src from the build system. --- arch/arm/src/__aeabi_memmove.c | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 arch/arm/src/__aeabi_memmove.c (limited to 'arch/arm/src/__aeabi_memmove.c') diff --git a/arch/arm/src/__aeabi_memmove.c b/arch/arm/src/__aeabi_memmove.c deleted file mode 100644 index 951e7d39..00000000 --- a/arch/arm/src/__aeabi_memmove.c +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include "libc.h" - -void __aeabi_memmove(void *dest, const void *src, size_t n) -{ - memmove(dest, src, n); -} -weak_alias(__aeabi_memmove, __aeabi_memmove4); -weak_alias(__aeabi_memmove, __aeabi_memmove8); -- cgit v1.2.1