diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2009-10-10 12:44:02 -0400 |
|---|---|---|
| committer | Austin Foxley <austinf@cetoncorp.com> | 2009-10-16 11:43:44 -0700 |
| commit | 58e2aa59747bb7a0f1f600c876f25413c29fedb3 (patch) | |
| tree | 291abd71b2d54e89da9f72d6cfada24db36a4cad /libc/string/stpncpy.c | |
| parent | 0a013fe8f69546b99d73876852cf284dd0dde474 (diff) | |
| download | uClibc-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/stpncpy.c')
| -rw-r--r-- | libc/string/stpncpy.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libc/string/stpncpy.c b/libc/string/stpncpy.c index 0524ee93e..088145dea 100644 --- a/libc/string/stpncpy.c +++ b/libc/string/stpncpy.c @@ -20,20 +20,12 @@ Wchar *Wstpncpy(register Wchar * __restrict s1, Wchar *s = s1; const Wchar *p = s2; -#ifdef __BCC__ - while (n--) { - if ((*s = *s2) != 0) s2++; /* Need to fill tail with 0s. */ - ++s; - } - return s1 + (s2 - p); -#else while (n) { if ((*s = *s2) != 0) s2++; /* Need to fill tail with 0s. */ ++s; --n; } return s1 + (s2 - p); -#endif } #ifndef WANT_WIDE |
