summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/gen/strcoll.c
blob: fda1409455185a92daeec43f7496249d61391847 (plain)
1
2
3
4
5
6
7
8
#include <string.h>

int
strcoll(const char *s1, const char *s2)
{
	/* BUG: supposed to pay attention to LC_COLLATE of current locale */
	return strcmp(s1, s2);
}