diff options
Diffstat (limited to 'libc/string/strcpy.c')
-rw-r--r-- | libc/string/strcpy.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libc/string/strcpy.c b/libc/string/strcpy.c index 568efbf60..bb5a16872 100644 --- a/libc/string/strcpy.c +++ b/libc/string/strcpy.c @@ -17,13 +17,7 @@ Wchar *Wstrcpy(Wchar * __restrict s1, const Wchar * __restrict s2) { register Wchar *s = s1; -#ifdef __BCC__ - do { - *s = *s2++; - } while (*s++ != 0); -#else while ( (*s++ = *s2++) != 0 ); -#endif return s1; } |