diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-05-13 19:21:46 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-05-13 19:21:46 +0000 |
commit | b859770a9042cd3b80e48455257b170a33acc0e6 (patch) | |
tree | 03821f271b530ebf1c52e16febd23d51c82abd08 /contrib/binutils/libiberty/index.c | |
parent | 30565a54fcfe17393cf34d115abbdfb53c056c22 (diff) |
Diffstat (limited to 'contrib/binutils/libiberty/index.c')
-rw-r--r-- | contrib/binutils/libiberty/index.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/contrib/binutils/libiberty/index.c b/contrib/binutils/libiberty/index.c deleted file mode 100644 index e5a00f54d9468..0000000000000 --- a/contrib/binutils/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); -} |