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