when building for arm as thumb2 code, also request assembly as thumb
[musl.git] / src / locale / wcscoll.c
blob14bb8b9f9607991872e9c1861481ce8ea07df88e
1 #include <wchar.h>
2 #include <locale.h>
3 #include "locale_impl.h"
4 #include "libc.h"
6 /* FIXME: stub */
7 int __wcscoll_l(const wchar_t *l, const wchar_t *r, locale_t locale)
9 return wcscmp(l, r);
12 int wcscoll(const wchar_t *l, const wchar_t *r)
14 return __wcscoll_l(l, r, CURRENT_LOCALE);
17 weak_alias(__wcscoll_l, wcscoll_l);