From 96a4928454fb7a8361a0b33940006ff491506f4d Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 10 Oct 2009 12:44:02 -0400 Subject: drop __BCC__ cruft from string code Signed-off-by: Mike Frysinger --- libc/string/stpncpy.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'libc/string/stpncpy.c') 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 -- cgit v1.2.3