complex: make _Complex_I work with gcc -std=c99 -pedantic-errors
[musl] / src / locale / strcoll_l.c
1 #include <string.h>
2 #include <locale.h>
3
4 int strcoll_l(const char *l, const char *r, locale_t loc)
5 {
6         return strcoll(l, r);
7 }