diff options
Diffstat (limited to 'src/strings/index.c')
-rw-r--r-- | src/strings/index.c | 11 |
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); -} - |