xref: /plan9/sys/src/ape/lib/ap/gen/strcoll.c (revision 3e12c5d1bb89fc02707907988834ef147769ddaf)
1 #include <string.h>
2 
3 int
strcoll(const char * s1,const char * s2)4 strcoll(const char *s1, const char *s2)
5 {
6 	/* BUG: supposed to pay attention to LC_COLLATE of current locale */
7 	return strcmp(s1, s2);
8 }
9