ref: 0c28f70ffebef1de8db8339c56487f8dfe6a9e58
dir: /lib/c/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++)
;
return ret;
}