From f8703c6453b64fd74354a0851f6fb05795c31956 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Mon, 14 Nov 2005 22:57:45 +0000 Subject: Move to use attribute_hidden --- libc/string/generic/strcpy.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libc/string/generic/strcpy.c') diff --git a/libc/string/generic/strcpy.c b/libc/string/generic/strcpy.c index 7e40aab3f..7ecdfc9cb 100644 --- a/libc/string/generic/strcpy.c +++ b/libc/string/generic/strcpy.c @@ -25,8 +25,7 @@ #undef strcpy /* Copy SRC to DEST. */ -char * -strcpy (dest, src) +char attribute_hidden *__strcpy (dest, src) char *dest; const char *src; { @@ -48,3 +47,5 @@ strcpy (dest, src) return dest; } + +strong_alias(__strcpy, strcpy) -- cgit v1.2.3