more locale_t interfaces (string stuff) and header updates
[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 }