From fe68563b9a070fedf117c8738652587945427bb3 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Tue, 3 Jan 2006 14:46:56 +0000 Subject: Use strong_alias everywhere instead of .global/.set. Correct some cases where the non-hidden version was used. --- libc/string/powerpc/memcpy.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libc/string/powerpc/memcpy.c') diff --git a/libc/string/powerpc/memcpy.c b/libc/string/powerpc/memcpy.c index 34573b29f..5af96869b 100644 --- a/libc/string/powerpc/memcpy.c +++ b/libc/string/powerpc/memcpy.c @@ -21,7 +21,6 @@ #include -#undef memcpy void attribute_hidden *__memcpy(void *to, const void *from, size_t n) /* PPC can do pre increment and load/store, but not post increment and load/store. Therefore use *++ptr instead of *ptr++. */ @@ -78,4 +77,4 @@ void attribute_hidden *__memcpy(void *to, const void *from, size_t n) goto lessthan8; } -strong_alias(__memcpy, memcpy) +strong_alias(__memcpy,memcpy) -- cgit v1.2.3