math: fix two fma issues (only affects non-nearest rounding mode, x86)
[musl] / src / locale / strcoll_l.c
1 #include <string.h>
2 #include <locale.h>
3
4 int strcoll_l(const char *l, const char *r, locale_t loc)
5 {
6         return strcoll(l, r);
7 }