summaryrefslogtreecommitdiff
path: root/libiberty/index.c
diff options
context:
space:
mode:
Diffstat (limited to 'libiberty/index.c')
-rw-r--r--libiberty/index.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libiberty/index.c b/libiberty/index.c
deleted file mode 100644
index e5a00f54d94..00000000000
--- a/libiberty/index.c
+++ /dev/null
@@ -1,11 +0,0 @@
-/* Stub implementation of (obsolete) index(). */
-
-extern char * strchr();
-
-char *
-index (s, c)
- char *s;
- int c;
-{
- return strchr (s, c);
-}