diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-09 18:02:10 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-09 18:02:10 -0800 |
commit | 6ce701137e44f06b68e772d2b8cbaef72800cd31 (patch) | |
tree | 69875af99c4dd4ea3a20cb90591deca4fa5a3872 /hash.h | |
parent | dd68bf698a5618226fb3807d752c4ff73966cb5f (diff) | |
download | txr-6ce701137e44f06b68e772d2b8cbaef72800cd31.tar.gz txr-6ce701137e44f06b68e772d2b8cbaef72800cd31.tar.bz2 txr-6ce701137e44f06b68e772d2b8cbaef72800cd31.zip |
Add hash table growth.
Diffstat (limited to 'hash.h')
-rw-r--r-- | hash.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ obj_t *hash_obj(obj_t *); obj_t *make_hash(obj_t *weak_keys, obj_t *weak_vals); -obj_t **l_gethash(obj_t *hash, obj_t *key); +obj_t **gethash_l(obj_t *hash, obj_t *key); obj_t *gethash(obj_t *hash, obj_t *key); void hash_process_weak(void); |