summaryrefslogtreecommitdiff
path: root/src/strings/rindex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strings/rindex.c')
-rw-r--r--src/strings/rindex.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/strings/rindex.c b/src/strings/rindex.c
deleted file mode 100644
index 4f381cc0..00000000
--- a/src/strings/rindex.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#if 0
-
-#include <string.h>
-#include <strings.h>
-
-char *rindex(const char *s, int c)
-{
- return strrchr(s, c);
-}
-
-/*
-XOPEN(400,700)
-*/
-
-
-#endif