1 /* replacement strcoll.c */
2
3 int
4 strcoll(const char *s1, const char *s2)
5 {
6 return strcmp(s1, s2); /* nyah, nyah, so there */
7 }
1 /* replacement strcoll.c */
2
3 int
4 strcoll(const char *s1, const char *s2)
5 {
6 return strcmp(s1, s2); /* nyah, nyah, so there */
7 }