blob: b6f545363fe15340e6ce31884e6d80bc6275b012 [file] [log] [blame]
#include <wchar.h>
#include <locale.h>
#include "locale_impl.h"
#include "libc.h"
/* FIXME: stub */
int __wcscoll_l(const wchar_t* l, const wchar_t* r, locale_t locale) {
return wcscmp(l, r);
}
int wcscoll(const wchar_t* l, const wchar_t* r) {
return __wcscoll_l(l, r, CURRENT_LOCALE);
}
weak_alias(__wcscoll_l, wcscoll_l);