ref: 7975eec3e602fd5bc3e93c78f4166259190f2fe9 dir: /libkern/strcat.c/
#include <lib9.h> char* strcat(char *s1, char *s2) { strcpy(strchr(s1, 0), s2); return s1; }