summaryrefslogtreecommitdiff
path: root/src/string/strrchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/strrchr.c')
-rw-r--r--src/string/strrchr.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/string/strrchr.c b/src/string/strrchr.c
index 635fb3c1..98ad1b04 100644
--- a/src/string/strrchr.c
+++ b/src/string/strrchr.c
@@ -1,7 +1,5 @@
#include <string.h>
-void *__memrchr(const void *, int, size_t);
-
char *strrchr(const char *s, int c)
{
return __memrchr(s, c, strlen(s) + 1);