ref: 8b93eca2afbc1cae89f533c595d3018d86b5f7e5 dir: /sys/src/ape/lib/ap/gen/strcat.c/
#include <string.h> char* strcat(char *s1, const char *s2) { strcpy(strchr(s1, 0), s2); return s1; }