Home | History | Annotate | Download | only in musl-locale
      1 #include <string.h>
      2 #include <locale.h>
      3 #include "libc.h"
      4 
      5 // ANDROID: was __strcoll_l
      6 int strcoll_l(const char *l, const char *r, locale_t loc)
      7 {
      8 	return strcmp(l, r);
      9 }
     10 
     11 int strcoll(const char *l, const char *r)
     12 {
     13 	return strcoll_l(l, r, 0);
     14 }
     15 
     16 weak_alias(__strcoll_l, strcoll_l);
     17