From 4c48501ee2a022a0dd207a2db4d346a00f9927a1 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 2 Jul 2014 21:46:41 -0400 Subject: properly pass current locale to *_l functions when used internally this change is presently non-functional since the callees do not yet use their locale argument for anything. --- src/locale/wcscoll.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/locale/wcscoll.c') diff --git a/src/locale/wcscoll.c b/src/locale/wcscoll.c index 20a60900..14bb8b9f 100644 --- a/src/locale/wcscoll.c +++ b/src/locale/wcscoll.c @@ -1,5 +1,6 @@ #include #include +#include "locale_impl.h" #include "libc.h" /* FIXME: stub */ @@ -10,7 +11,7 @@ int __wcscoll_l(const wchar_t *l, const wchar_t *r, locale_t locale) int wcscoll(const wchar_t *l, const wchar_t *r) { - return __wcscoll_l(l, r, 0); + return __wcscoll_l(l, r, CURRENT_LOCALE); } weak_alias(__wcscoll_l, wcscoll_l); -- cgit v1.2.1