code: 9ferno

ref: fe52f7e86eea5e5f1b2066e1e33cb90471999769
dir: /libkern/strcat.c/

View raw version
#include <lib9.h>

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

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