summaryrefslogtreecommitdiff
path: root/src/string/arm/memcpy.c
diff options
context:
space:
mode:
authorAndre McCurdy <armccurdy@gmail.com>2020-01-21 10:52:15 -0800
committerRich Felker <dalias@aerifal.cx>2020-06-25 19:11:13 -0400
commit9dce93ac7f7a76978b70581c6f073f671b583347 (patch)
treec6c36ceb8ceb10575af4af066fb19072df55d384 /src/string/arm/memcpy.c
parent8ed2bd8bfcb4ea6448afb55a941f4b5b2b0398c0 (diff)
downloadmusl-9dce93ac7f7a76978b70581c6f073f671b583347.tar.gz
add big-endian support to ARM assembler memcpy
Allow the existing ARM assembler memcpy implementation to be used for both big and little endian targets.
Diffstat (limited to 'src/string/arm/memcpy.c')
-rw-r--r--src/string/arm/memcpy.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/string/arm/memcpy.c b/src/string/arm/memcpy.c
deleted file mode 100644
index 041614f4..00000000
--- a/src/string/arm/memcpy.c
+++ /dev/null
@@ -1,3 +0,0 @@
-#if __ARMEB__
-#include "../memcpy.c"
-#endif