diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-10-10 12:44:02 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-10-10 12:44:02 -0400 |
commit | 96a4928454fb7a8361a0b33940006ff491506f4d (patch) | |
tree | f1a8bf7507cc686c2839dd569325cf157a3234f1 /libc/string/stpcpy.c | |
parent | 00d805f334c009164d7cecab931086a0545af8d1 (diff) |
drop __BCC__ cruft from string code
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
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; } |