summaryrefslogtreecommitdiff
path: root/sys/src/libc/port/strcat.c
blob: 137dc819541198172e0d1d29235b200ebe291dc5 (plain)
1
2
3
4
5
6
7
8
9
10
#include <u.h>
#include <libc.h>

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

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