]> pd.if.org Git - zos/blob - klib/strcpy.c
klib and makefile
[zos] / klib / strcpy.c
1 #include <string.h>
2
3 char *strcpy(char *s1, const char *s2) {
4         char *rc = s1;
5         while ( ( *s1++ = *s2++ ) );
6         return rc;
7 }