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