ref: 2498b06cc6ad53a64940ad714e3feb3fed88f12d
dir: /lib/c/src/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++)
/* nothing */;
return ret;
}