ref: 8e322e5a5b60c290f6a7cc65f8113bafae36a1e7 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; }