summaryrefslogtreecommitdiff
path: root/libc/string/wstring.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/wstring.c')
-rw-r--r--libc/string/wstring.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/string/wstring.c b/libc/string/wstring.c
index efe41c37a..f41281357 100644
--- a/libc/string/wstring.c
+++ b/libc/string/wstring.c
@@ -1734,7 +1734,8 @@ Wchar *Wstpncpy(register Wchar * __restrict s1,
/**********************************************************************/
#ifdef L_bzero
-void bzero(void *s, size_t n)
+weak_alias(__bzero,bzero);
+void __bzero(void *s, size_t n)
{
register unsigned char *p = s;
#ifdef __BCC__