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