summaryrefslogtreecommitdiffstats
path: root/libc/string/stpcpy.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-10-10 12:44:02 -0400
committerAustin Foxley <austinf@cetoncorp.com>2009-10-16 11:43:44 -0700
commit58e2aa59747bb7a0f1f600c876f25413c29fedb3 (patch)
tree291abd71b2d54e89da9f72d6cfada24db36a4cad /libc/string/stpcpy.c
parent0a013fe8f69546b99d73876852cf284dd0dde474 (diff)
downloaduClibc-alpine-58e2aa59747bb7a0f1f600c876f25413c29fedb3.tar.bz2
uClibc-alpine-58e2aa59747bb7a0f1f600c876f25413c29fedb3.tar.xz
drop __BCC__ cruft from string code
Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/string/stpcpy.c')
-rw-r--r--libc/string/stpcpy.c6
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;
}