summaryrefslogtreecommitdiff
path: root/libc/string
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-01-14 19:58:38 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-01-14 19:58:38 +0000
commita8cfece13b44fbd0f2de763442ba2756bb341d90 (patch)
treef99eaf5f7599187c68ba7e4b8c318a111e355aac /libc/string
parent6f7dc709ed7e403af224b0fbb91e9619629eb2ec (diff)
DODEBUG=y and XLOCALE as well
Diffstat (limited to 'libc/string')
-rw-r--r--libc/string/_collate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/string/_collate.c b/libc/string/_collate.c
index 755a6df21..ce50400c0 100644
--- a/libc/string/_collate.c
+++ b/libc/string/_collate.c
@@ -62,20 +62,20 @@ libc_hidden_proto(strcmp)
libc_hidden_proto(wcscoll_l)
+libc_hidden_proto(wcscoll)
int wcscoll (const Wchar *s0, const Wchar *s1)
{
return wcscoll_l(s0, s1, __UCLIBC_CURLOCALE );
}
-libc_hidden_proto(wcscoll)
libc_hidden_def(wcscoll)
libc_hidden_proto(wcsxfrm_l)
+libc_hidden_proto(wcsxfrm)
size_t wcsxfrm(Wchar *__restrict ws1, const Wchar *__restrict ws2, size_t n)
{
return wcsxfrm_l(ws1, ws2, n, __UCLIBC_CURLOCALE );
}
-libc_hidden_proto(wcsxfrm)
libc_hidden_def(wcsxfrm)
#else /* defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE) */