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