ref: 7edf451bf7accdac3edb62dbba35e0713072a9f0
dir: /src/libc/string/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;
}