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