summaryrefslogtreecommitdiff
path: root/third_party/newlib/string/memcpy.c
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2023-03-09 02:13:58 +0300
committerOxore <oxore@protonmail.com>2023-03-09 02:13:58 +0300
commite5d10780eff394af075c1e394605fb5c915b3688 (patch)
treedced9eb6ea331f776ab3531a716508db9909ec8c /third_party/newlib/string/memcpy.c
parent34746d3783af1ae601487c88f0a7e44f81842618 (diff)
Fix compilation with optimization on Gentoo
Diffstat (limited to 'third_party/newlib/string/memcpy.c')
-rw-r--r--third_party/newlib/string/memcpy.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/third_party/newlib/string/memcpy.c b/third_party/newlib/string/memcpy.c
index 52f716b..fe8467c 100644
--- a/third_party/newlib/string/memcpy.c
+++ b/third_party/newlib/string/memcpy.c
@@ -44,6 +44,10 @@ QUICKREF
/* Threshhold for punting to the byte copier. */
#define TOO_SMALL(LEN) ((LEN) < BIGBLOCKSIZE)
+#if defined(memcpy)
+#undef memcpy
+#endif
+
void *
__inhibit_loop_to_libcall
memcpy (void *__restrict dst0,