#include #include #include int strcoll(const char *s1, const char *s2) { return strcmp(s1, s2); } __weak int strcoll_l(const char *s1, const char *s2, locale_t __unused locale) { return strcoll(s1, s2); }