ref: e3010307fe5e503097f0c5d3227faea76566e75d
dir: /src/libc/string/strcat.c/
#include <string.h>
#undef strcat
char *
strcat(char * restrict dst, const char * restrict src)
{
char *ret = dst;
while (*dst)
++dst;
while (*dst++ = *src++)
;
return ret;
}