xref: /inferno-os/libkern/strcat.c (revision 7ef44d652ae9e5e1f5b3465d73684e4a54de73c0)
1 #include <lib9.h>
2 
3 char*
4 strcat(char *s1, char *s2)
5 {
6 
7 	strcpy(strchr(s1, 0), s2);
8 	return s1;
9 }
10