(root)/
gawk-5.2.2/
missing_d/
strcoll.c
       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  }