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/strnlen.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'libc/string/strnlen.c') diff --git a/libc/string/strnlen.c b/libc/string/strnlen.c index 98267e51b..08de0887d 100644 --- a/libc/string/strnlen.c +++ b/libc/string/strnlen.c @@ -18,21 +18,14 @@ size_t Wstrnlen(const Wchar *s, size_t max) { register const Wchar *p = s; -#ifdef __BCC__ - /* bcc can optimize the counter if it thinks it is a pointer... */ - register const char *maxp = (const char *) max; -#else -# define maxp max -#endif - while (maxp && *p) { + while (max && *p) { ++p; - --maxp; + --max; } return p - s; } -#undef maxp libc_hidden_def(Wstrnlen) #endif -- cgit v1.2.3