ref: 34a1b1bb22e482e9a31e522e6df1b34d1673a20a dir: /sys/src/libc/port/strcat.c/
#include <u.h> #include <libc.h> char* strcat(char *s1, char *s2) { strcpy(strchr(s1, 0), s2); return s1; }