summaryrefslogtreecommitdiff
path: root/missing_d/strcoll.c
blob: ac65795e50454d4271bdee08477ca7417f2e9729 (plain)
1
2
3
4
5
6
7
/* replacement strcoll.c */

int
strcoll(const char *s1, const char *s2)
{
	return strcmp(s1, s2);	/* nyah, nyah, so there */
}