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/generic/strcpy.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'libc/string/generic/strcpy.c') diff --git a/libc/string/generic/strcpy.c b/libc/string/generic/strcpy.c index 08c810f31..9280d3561 100644 --- a/libc/string/generic/strcpy.c +++ b/libc/string/generic/strcpy.c @@ -22,8 +22,6 @@ #include "memcopy.h" #include "bp-checks.h" -#undef strcpy - /* Copy SRC to DEST. */ char attribute_hidden *__strcpy (char *dest, const char *src) { @@ -46,4 +44,4 @@ char attribute_hidden *__strcpy (char *dest, const char *src) return dest; } -strong_alias(__strcpy, strcpy) +strong_alias(__strcpy,strcpy) -- cgit v1.2.3