shithub: riscv

ref: 8b59286ef1d9bef6c2c7b248ab0b8072e25ec9cf
dir: /sys/src/ape/lib/ap/gen/strcoll.c/

View raw version
#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);
}