ref: 1b7e120c090af2f8f0e17a664ba0e5e5d7f261a0 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; }