From 1129cd16b42185f258fbe8d53a0fb11f1d530f42 Mon Sep 17 00:00:00 2001
From: "Peter S. Mazinger" <ps.m@gmx.net>
Date: Mon, 23 Jan 2006 13:45:00 +0000
Subject: Correct memcpy use

---
 libc/string/powerpc/memmove.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

(limited to 'libc/string')

diff --git a/libc/string/powerpc/memmove.c b/libc/string/powerpc/memmove.c
index 5f21f5f2f..327161116 100644
--- a/libc/string/powerpc/memmove.c
+++ b/libc/string/powerpc/memmove.c
@@ -21,6 +21,8 @@
 
 #include <string.h>
 
+libc_hidden_proto(memcpy)
+
 libc_hidden_proto(memmove)
 void *memmove(void *to, const void *from, size_t n)
 {
@@ -29,7 +31,7 @@ void *memmove(void *to, const void *from, size_t n)
 	unsigned char *tmp_from = (unsigned char *)from;
 
 	if (tmp_from >= (unsigned char *)to)
-		return __memcpy(to, from, n);
+		return memcpy(to, from, n);
 	chunks = n / 8;
 	tmp_from += n;
 	tmp_to = to + n;
-- 
cgit v1.2.3