summaryrefslogtreecommitdiff
path: root/libc/string/strncpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/strncpy.c')
-rw-r--r--libc/string/strncpy.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libc/string/strncpy.c b/libc/string/strncpy.c
index ccf031b1b..4a44e1f02 100644
--- a/libc/string/strncpy.c
+++ b/libc/string/strncpy.c
@@ -18,18 +18,11 @@ Wchar *Wstrncpy(Wchar * __restrict s1, register const Wchar * __restrict s2,
{
register Wchar *s = s1;
-#ifdef __BCC__
- while (n--) {
- if ((*s = *s2) != 0) s2++; /* Need to fill tail with 0s. */
- ++s;
- }
-#else
while (n) {
if ((*s = *s2) != 0) s2++; /* Need to fill tail with 0s. */
++s;
--n;
}
-#endif
return s1;
}