diff options
author | Jeff Law <law@redhat.com> | 1996-04-01 17:50:13 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-04-01 17:50:13 +0000 |
commit | ca4e2190ce2a33d73a933c6b5e1e015a48e64c09 (patch) | |
tree | 7127ed873f3e304c3696061d01a6972f36749882 /bfd/linker.c | |
parent | ce6a77318320c19cc5014c9cef0fdfa1289d1649 (diff) | |
download | gdb-ca4e2190ce2a33d73a933c6b5e1e015a48e64c09.zip gdb-ca4e2190ce2a33d73a933c6b5e1e015a48e64c09.tar.gz gdb-ca4e2190ce2a33d73a933c6b5e1e015a48e64c09.tar.bz2 |
* linker.c (_bfd_generic_link_hash_newfunc): Renamed from
generic_link_hash_newfunc. All references changed.
* genlink.h (_bfd_generic_link_hash_newfunc): Declaration
moved here from libbfd-in.h.
* libbfd-in.h: Corresponding changes.
* libbfd.h: Regenerated.
Minor changes suggested by Ian.
Diffstat (limited to 'bfd/linker.c')
-rw-r--r-- | bfd/linker.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/linker.c b/bfd/linker.c index c359c92..696d310 100644 --- a/bfd/linker.c +++ b/bfd/linker.c @@ -631,7 +631,7 @@ bfd_link_add_undef (table, h) /* Routine to create an entry in an generic link hash table. */ struct bfd_hash_entry * -generic_link_hash_newfunc (entry, table, string) +_bfd_generic_link_hash_newfunc (entry, table, string) struct bfd_hash_entry *entry; struct bfd_hash_table *table; const char *string; @@ -675,7 +675,7 @@ _bfd_generic_link_hash_table_create (abfd) if (ret == NULL) return (struct bfd_link_hash_table *) NULL; if (! _bfd_link_hash_table_init (&ret->root, abfd, - generic_link_hash_newfunc)) + _bfd_generic_link_hash_newfunc)) { free (ret); return (struct bfd_link_hash_table *) NULL; |