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 } 8