diff options
author | DJ Delorie <dj@redhat.com> | 2010-06-10 18:30:24 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2010-06-10 18:30:24 +0000 |
commit | 219a461e6c1b65b12a6b08ba167560c00dd2174d (patch) | |
tree | 87f7cd0012ca973b3885c99639fb89be6bc534a6 /include/hashtab.h | |
parent | f3a2388fc96c63c0233cdc3449ea61cf36e4975b (diff) | |
download | binutils-219a461e6c1b65b12a6b08ba167560c00dd2174d.zip binutils-219a461e6c1b65b12a6b08ba167560c00dd2174d.tar.gz binutils-219a461e6c1b65b12a6b08ba167560c00dd2174d.tar.bz2 |
merge from gcc
Diffstat (limited to 'include/hashtab.h')
-rw-r--r-- | include/hashtab.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/hashtab.h b/include/hashtab.h index 1cd406d..4bb65d6 100644 --- a/include/hashtab.h +++ b/include/hashtab.h @@ -1,5 +1,5 @@ /* An expandable hash tables datatype. - Copyright (C) 1999, 2000, 2002, 2003, 2004, 2005, 2009 + Copyright (C) 1999, 2000, 2002, 2003, 2004, 2005, 2009, 2010 Free Software Foundation, Inc. Contributed by Vladimir Makarov (vmakarov@cygnus.com). @@ -157,6 +157,9 @@ extern htab_t htab_create_alloc_ex (size_t, htab_hash, void *, htab_alloc_with_arg, htab_free_with_arg); +extern htab_t htab_create_typed_alloc (size_t, htab_hash, htab_eq, htab_del, + htab_alloc, htab_alloc, htab_free); + /* Backward-compatibility functions. */ extern htab_t htab_create (size_t, htab_hash, htab_eq, htab_del); extern htab_t htab_try_create (size_t, htab_hash, htab_eq, htab_del); |