aboutsummaryrefslogtreecommitdiff
path: root/bfd/hash.c
diff options
context:
space:
mode:
authorDavid MacKenzie <djm@cygnus>1994-02-05 02:46:12 +0000
committerDavid MacKenzie <djm@cygnus>1994-02-05 02:46:12 +0000
commit0ee3427297272a636e7ef8378182a38d64ed7b7d (patch)
tree4aad622fe6694ef2d197613a4c15a17d349507ee /bfd/hash.c
parent0b2f8d2edd598eb8f013e8b61fd49def1d908281 (diff)
downloadgdb-0ee3427297272a636e7ef8378182a38d64ed7b7d.zip
gdb-0ee3427297272a636e7ef8378182a38d64ed7b7d.tar.gz
gdb-0ee3427297272a636e7ef8378182a38d64ed7b7d.tar.bz2
* libbfd.c (bfd_zmalloc): Call bfd_xmalloc instead of malloc.
(bfd_xmalloc, bfd_xmalloc_by_size_t): Functions deleted. * libbfd-in.h: Define them as macros calling xmalloc and declare xmalloc. * libbfd.h: Rebuilt. * ecofflink.c hash.c ieee.c opncls.c (obstack_chunk_alloc): Define to be xmalloc, not bfd_xmalloc_by_size_t.
Diffstat (limited to 'bfd/hash.c')
-rw-r--r--bfd/hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/hash.c b/bfd/hash.c
index 9effba8..bccc97d 100644
--- a/bfd/hash.c
+++ b/bfd/hash.c
@@ -290,7 +290,7 @@ SUBSUBSECTION
*/
/* Obstack allocation and deallocation routines. */
-#define obstack_chunk_alloc bfd_xmalloc_by_size_t
+#define obstack_chunk_alloc xmalloc
#define obstack_chunk_free free
/* The default number of entries to use when creating a hash table. */
@@ -419,7 +419,7 @@ bfd_hash_newfunc (entry, table, string)
PTR
bfd_hash_allocate (table, size)
struct bfd_hash_table *table;
- size_t size;
+ unsigned int size;
{
return obstack_alloc (&table->memory, size);
}