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