summaryrefslogtreecommitdiff
path: root/libc/string/strncat.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/strncat.c')
-rw-r--r--libc/string/strncat.c4
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;