aboutsummaryrefslogtreecommitdiffstats
path: root/src/strings/index.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/strings/index.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/strings/index.c b/src/strings/index.c
index eb7e321..2f46d30 100644
--- a/src/strings/index.c
+++ b/src/strings/index.c
@@ -30,14 +30,3 @@ char* (index)(const char* string, int c)
return (strchr)(string, c);
}
-
-/**
- * This function is identical to `strrchr`.
- *
- * This is a deprecated BSD extension.
- */
-char* (rindex)(const char* string, int c)
-{
- return (strrchr)(string, c);
-}
-