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