diff options
Diffstat (limited to 'libiberty/index.c')
-rwxr-xr-x | libiberty/index.c | 11 |
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); -} |