1#include <string.h>
2#include <locale.h>
3#include "locale_impl.h"
4#include "libc.h"
5
6int __strcoll_l(const char *l, const char *r, locale_t loc)
7{
8	return strcmp(l, r);
9}
10
11int strcoll(const char *l, const char *r)
12{
13	return __strcoll_l(l, r, CURRENT_LOCALE);
14}
15
16weak_alias(__strcoll_l, strcoll_l);
17