summaryrefslogtreecommitdiffstats
path: root/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'hash.h')
-rw-r--r--hash.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/hash.h b/hash.h
index bdce904a..40ba35c0 100644
--- a/hash.h
+++ b/hash.h
@@ -24,11 +24,11 @@
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-obj_t *hash_obj(obj_t *);
-obj_t *make_hash(obj_t *weak_keys, obj_t *weak_vals);
-obj_t **gethash_l(obj_t *hash, obj_t *key);
-obj_t *gethash(obj_t *hash, obj_t *key);
-obj_t *remhash(obj_t *hash, obj_t *key);
+val hash_obj(val);
+val make_hash(val weak_keys, val weak_vals);
+val *gethash_l(val hash, val key);
+val gethash(val hash, val key);
+val remhash(val hash, val key);
void hash_process_weak(void);
void hash_init(void);