xref: /plan9/sys/src/ape/lib/ap/gen/strcat.c (revision 9b943567965ba040fd275927fbe088656eb8ce4f)
1 #include <string.h>
2 
3 char*
4 strcat(char *s1, const char *s2)
5 {
6 
7 	strcpy(strchr(s1, 0), s2);
8 	return s1;
9 }
10