summaryrefslogtreecommitdiff
path: root/libc/string/memchr.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-10-10 12:44:02 -0400
committerMike Frysinger <vapier@gentoo.org>2009-10-10 12:44:02 -0400
commit96a4928454fb7a8361a0b33940006ff491506f4d (patch)
treef1a8bf7507cc686c2839dd569325cf157a3234f1 /libc/string/memchr.c
parent00d805f334c009164d7cecab931086a0545af8d1 (diff)
drop __BCC__ cruft from string code
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'libc/string/memchr.c')
-rw-r--r--libc/string/memchr.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/libc/string/memchr.c b/libc/string/memchr.c
index 438f4fa4a..99e13a2fc 100644
--- a/libc/string/memchr.c
+++ b/libc/string/memchr.c
@@ -17,23 +17,16 @@
Wvoid *Wmemchr(const Wvoid *s, Wint c, size_t n)
{
register const Wuchar *r = (const Wuchar *) s;
-#ifdef __BCC__
- /* bcc can optimize the counter if it thinks it is a pointer... */
- register const char *np = (const char *) n;
-#else
-# define np n
-#endif
- while (np) {
+ while (n) {
if (*r == ((Wuchar)c)) {
return (Wvoid *) r; /* silence the warning */
}
++r;
- --np;
+ --n;
}
return NULL;
}
-#undef np
libc_hidden_def(Wmemchr)