xref: /plan9-contrib/sys/src/ape/lib/ap/gen/strcoll.c (revision 219b2ee8daee37f4aad58d63f21287faa8e4ffdc)
1 #include <string.h>
2 
3 int
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