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/strncat.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/strncat.c')
| -rw-r--r-- | libc/string/strncat.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libc/string/strncat.c b/libc/string/strncat.c index cbbb0c540..0fa9b4ae1 100644 --- a/libc/string/strncat.c +++ b/libc/string/strncat.c @@ -20,14 +20,10 @@ Wchar *Wstrncat(Wchar * __restrict s1, register const Wchar * __restrict s2, while (*s++); --s; -#ifdef __BCC__ - while (n-- && ((*s = *s2++) != 0)) ++s; -#else while (n && ((*s = *s2++) != 0)) { --n; ++s; } -#endif *s = 0; return s1; |
