summaryrefslogtreecommitdiff
path: root/libc/string
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-12-02 03:30:48 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-12-02 03:30:48 +0000
commitd68d28e6969145dccc3eff52cfc4d5604f618736 (patch)
tree05c4deb55049f5c93343009194e461c25fcd676f /libc/string
parentb3a5fafd07f293a5b22421ba0ba1f22eb66ed119 (diff)
Enable alias for 'bcopy' otherwise BusyBox will not build *sigh*.
Diffstat (limited to 'libc/string')
-rw-r--r--libc/string/wstring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/wstring.c b/libc/string/wstring.c
index 826c4b8ce..70e0be854 100644
--- a/libc/string/wstring.c
+++ b/libc/string/wstring.c
@@ -2003,7 +2003,7 @@ void attribute_hidden __bcopy(const void *s2, void *s1, size_t n)
#endif
}
-//strong_alias(__bcopy, bcopy)
+strong_alias(__bcopy, bcopy)
#endif
/**********************************************************************/