xref: /plan9/sys/src/ape/lib/ap/gen/strcoll.c (revision 9b943567965ba040fd275927fbe088656eb8ce4f)
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