git: 9front

ref: dd4ac6a8805edfb69d282e63f9ba06cf5b25afff
dir: /sys/src/ape/lib/ap/gen/strcat.c/

View raw version
#include <string.h>

char*
strcat(char *s1, const char *s2)
{

	strcpy(strchr(s1, 0), s2);
	return s1;
}