math: use 0x1p-120f and 0x1p120f for tiny and huge values
[musl] / src / locale / wcscoll_l.c
1 #include <wchar.h>
2
3 int wcscoll_l(const wchar_t *l, const wchar_t *r, locale_t locale)
4 {
5         return wcscoll(l, r);
6 }