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