diff options
Diffstat (limited to 'libc/string/stpcpy.c')
-rw-r--r-- | libc/string/stpcpy.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libc/string/stpcpy.c b/libc/string/stpcpy.c index 58ace8fc7..2fd2c0648 100644 --- a/libc/string/stpcpy.c +++ b/libc/string/stpcpy.c @@ -16,13 +16,7 @@ Wchar *Wstpcpy(register Wchar * __restrict s1, const Wchar * __restrict s2) { -#ifdef __BCC__ - do { - *s1 = *s2++; - } while (*s1++ != 0); -#else while ( (*s1++ = *s2++) != 0 ); -#endif return s1 - 1; } |