aboutsummaryrefslogtreecommitdiffstats
path: root/src/strings/index.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-11-17 02:34:10 +0100
committerMattias Andrée <maandree@operamail.com>2015-11-17 02:34:10 +0100
commitd6278a12e7405d60d378d189dccb9e367b5574a7 (patch)
tree231e75efbfcd721ef84e6976256a8ba26fe8865f /src/strings/index.c
parentsplit div.c (diff)
downloadslibc-d6278a12e7405d60d378d189dccb9e367b5574a7.tar.gz
slibc-d6278a12e7405d60d378d189dccb9e367b5574a7.tar.bz2
slibc-d6278a12e7405d60d378d189dccb9e367b5574a7.tar.xz
split index.c
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/strings/index.c')
-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);
-}
-