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