1#include "libc.h"
2#include <string.h>
3
4int strcoll(const char* l, const char* r) {
5    return strcmp(l, r);
6}
7