diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2025-03-19 22:45:16 +0000 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2025-03-20 12:11:51 +0000 |
commit | aba7ef898745fd09d03ad4ebedcd11f68abc5160 (patch) | |
tree | 29ae5f8e12177d07a217e2b867e0112e4b5e477b /libctf/ctf-hash.c | |
parent | a3b1d33bf67a44a9f7677ecfe8d897038c77e9a9 (diff) | |
download | binutils-aba7ef898745fd09d03ad4ebedcd11f68abc5160.zip binutils-aba7ef898745fd09d03ad4ebedcd11f68abc5160.tar.gz binutils-aba7ef898745fd09d03ad4ebedcd11f68abc5160.tar.bz2 |
libctf: lots and lots of compilation error fixes
More to come.
Diffstat (limited to 'libctf/ctf-hash.c')
-rw-r--r-- | libctf/ctf-hash.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libctf/ctf-hash.c b/libctf/ctf-hash.c index a170b6c..64657bd 100644 --- a/libctf/ctf-hash.c +++ b/libctf/ctf-hash.c @@ -779,6 +779,12 @@ ctf_dynset_destroy (ctf_dynset_t *hp) htab_delete ((struct htab *) hp); } +void +ctf_dynset_destroy_arg (ctf_dynset_t *hp, void *unused _libctf_unused_) +{ + ctf_dynset_destroy (hp); +} + void * ctf_dynset_lookup (ctf_dynset_t *hp, const void *key) { |