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