ref: 04d0d77e4b8a5525a86e7d84e0620001a099324f 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; }