diff options
author | DJ Delorie <dj@redhat.com> | 2001-08-17 06:32:52 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2001-08-17 06:32:52 +0000 |
commit | 6445d1871cfb6797a68a70c22e2630ed601d2b0b (patch) | |
tree | 119d80cdb5be763d8a9e206ee10a6e771abbc896 /include | |
parent | ab7c6379a88254dc78870413d8b7ce2663cecfaf (diff) | |
download | newlib-6445d1871cfb6797a68a70c22e2630ed601d2b0b.zip newlib-6445d1871cfb6797a68a70c22e2630ed601d2b0b.tar.gz newlib-6445d1871cfb6797a68a70c22e2630ed601d2b0b.tar.bz2 |
merge from gcc
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/hashtab.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 305754f..b7d460e 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2001-08-16 Richard Henderson <rth@redhat.com> + + * hashtab.h (htab_hash_string): Declare. + 2001-06-13 Andrew Cagney <ac131313@redhat.com> * libiberty.h (lbasename): Change function declaration to return a diff --git a/include/hashtab.h b/include/hashtab.h index a577c5e..8871710 100644 --- a/include/hashtab.h +++ b/include/hashtab.h @@ -145,6 +145,9 @@ extern htab_hash htab_hash_pointer; /* An equality function for pointers. */ extern htab_eq htab_eq_pointer; +/* A hash function for null-terminated strings. */ +extern hashval_t htab_hash_string PARAMS ((const PTR)); + #ifdef __cplusplus } #endif /* __cplusplus */ |