summaryrefslogtreecommitdiff
path: root/libiberty/index.c
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-02-15 16:00:37 -0800
committerYamaArashi <shadow962@live.com>2016-02-15 16:00:37 -0800
commit2f209e7d2884f9658a996adeb896233db9fecdad (patch)
treecc0806a5f4fdaca67ef39a9bb583347c68b54edd /libiberty/index.c
parent526fd830c2ce8da3397bc08a267db5aea78db6f3 (diff)
kill libiberty
Diffstat (limited to 'libiberty/index.c')
-rwxr-xr-xlibiberty/index.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libiberty/index.c b/libiberty/index.c
deleted file mode 100755
index e5a00f5..0000000
--- 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);
-}