about summary refs log tree commit diff
path: root/src/string/strrchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/strrchr.c')
-rw-r--r--src/string/strrchr.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/string/strrchr.c b/src/string/strrchr.c
index 31c8e0b8..9c683087 100644
--- a/src/string/strrchr.c
+++ b/src/string/strrchr.c
@@ -1,9 +1,8 @@
 #include <string.h>
 
+void *__memrchr(const void *, int, size_t);
+
 char *strrchr(const char *s, int c)
 {
-	const char *p;
-	c = (char)c;
-	for (p=s+strlen(s); p>=s && *p!=c; p--);
-	return p>=s ? (char *)p : 0;
+	return __memrchr(s, c, strlen(s));
 }