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