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