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