1 #include <string.h> 2 3 int strcoll(const char * s1,const char * s2)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