diff options
author | David Carlton <carlton@bactrian.org> | 2003-02-24 23:37:02 +0000 |
---|---|---|
committer | David Carlton <carlton@bactrian.org> | 2003-02-24 23:37:02 +0000 |
commit | 0fe19209f9dde2fd4450b13a9e772203cf313eff (patch) | |
tree | 5c56927bc27c7bdb16a65cbc6664f872ddbbe207 /gdb/defs.h | |
parent | c8d6825d9aa09b432701bb990fe9610442fcbaa1 (diff) | |
download | gdb-0fe19209f9dde2fd4450b13a9e772203cf313eff.zip gdb-0fe19209f9dde2fd4450b13a9e772203cf313eff.tar.gz gdb-0fe19209f9dde2fd4450b13a9e772203cf313eff.tar.bz2 |
2003-02-24 David Carlton <carlton@math.stanford.edu>
* symtab.c (lookup_partial_symbol): Use strcmp_iw_ordered to
do the comparison, not strcmp.
* symfile.c (compare_psymbols): Ditto.
* defs.h: Declare strcmp_iw_ordered.
* utils.c (strcmp_iw_ordered): New function.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -305,6 +305,8 @@ extern void notice_quit (void); extern int strcmp_iw (const char *, const char *); +extern int strcmp_iw_ordered (const char *, const char *); + extern int streq (const char *, const char *); extern int subset_compare (char *, char *); |