blob: 5d7d909a513f8e6c27f2badfa57e7e905c3cda8b [file] [log] [blame]
#include <string.h>
#include <locale.h>
#include "libc.h"
// ANDROID: was __strcoll_l
int strcoll_l(const char *l, const char *r, locale_t loc)
{
return strcmp(l, r);
}
int strcoll(const char *l, const char *r)
{
return strcoll_l(l, r, 0);
}
weak_alias(__strcoll_l, strcoll_l);