git: 9front

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