diff options
Diffstat (limited to 'libc/string/strcpy.c')
-rw-r--r-- | libc/string/strcpy.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libc/string/strcpy.c b/libc/string/strcpy.c deleted file mode 100644 index fa1e336..0000000 --- a/libc/string/strcpy.c +++ /dev/null @@ -1,8 +0,0 @@ -#include <string.h> - -char *strcpy(char *d, const char *s) { - char *s1 = d; - for (; (*d++ = *s++);) - ; - return s1; -} |