diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 1999-05-02 10:18:15 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 1999-05-02 10:18:15 +0000 |
commit | dad085251b33ea35bd93522a98d4a54bf7fdfbde (patch) | |
tree | 03217800ac8d41e0e851ad678aea070c6f5a4840 /contrib/gdb/libiberty/index.c | |
parent | f2489878f0ac9621ddd293f6f626b62ec6e8f5f4 (diff) |
Notes
Diffstat (limited to 'contrib/gdb/libiberty/index.c')
-rw-r--r-- | contrib/gdb/libiberty/index.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/contrib/gdb/libiberty/index.c b/contrib/gdb/libiberty/index.c deleted file mode 100644 index e5a00f54d946..000000000000 --- a/contrib/gdb/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); -} |