diff options
author | Alan Modra <amodra@bigpond.net.au> | 2007-09-19 12:08:34 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2007-09-19 12:08:34 +0000 |
commit | fd97b6392c4bf9394aee51d93471214296318595 (patch) | |
tree | 0531575ef6b942547d3aa89a8a36e83a65ae4a0e /bfd/bfd-in.h | |
parent | 6915357d0a45bfd1d9872d3900e3a51d26736e52 (diff) | |
download | gdb-fd97b6392c4bf9394aee51d93471214296318595.tar.gz |
* bfd-in.h (bfd_hash_insert): Declare.
* bfd-in2.h: Regenerate.
* hash.c (bfd_hash_insert): New function. Split out from..
(bfd_hash_lookup): ..here.
* merge.c (sec_merge_hash_lookup): Use bfd_hash_insert.
Diffstat (limited to 'bfd/bfd-in.h')
-rw-r--r-- | bfd/bfd-in.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bfd/bfd-in.h b/bfd/bfd-in.h index 2e70a7391fd..07fdf036497 100644 --- a/bfd/bfd-in.h +++ b/bfd/bfd-in.h @@ -464,6 +464,10 @@ extern struct bfd_hash_entry *bfd_hash_lookup (struct bfd_hash_table *, const char *, bfd_boolean create, bfd_boolean copy); +/* Insert an entry in a hash table. */ +extern struct bfd_hash_entry *bfd_hash_insert + (struct bfd_hash_table *, const char *, unsigned long); + /* Replace an entry in a hash table. */ extern void bfd_hash_replace (struct bfd_hash_table *, struct bfd_hash_entry *old, |