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