summaryrefslogtreecommitdiff
path: root/libc/string/generic/strcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/generic/strcpy.c')
-rw-r--r--libc/string/generic/strcpy.c5
1 files changed, 3 insertions, 2 deletions
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)