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