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