blob: e862bb11a7c1ef87d063516f8d46d09316668aac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "features.h" // for __weak
#include <libc.h> // for __unused
#include <string.h> // for strcmp, locale_t, strcoll, strcoll_l
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);
}
|