diff options
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -244,7 +244,7 @@ struct cobj_ops { void (*print)(val self, val stream, val pretty, struct strm_ctx *); void (*destroy)(val self); void (*mark)(val self); - cnum (*hash)(val self, int *count); + cnum (*hash)(val self, int *count, ucnum seed); val (*equalsub)(val self); }; @@ -265,8 +265,8 @@ val cobj_equal_handle_op(val left, val right); void cobj_destroy_stub_op(val); void cobj_destroy_free_op(val); void cobj_mark_op(val); -cnum cobj_eq_hash_op(val, int *); -cnum cobj_handle_hash_op(val, int *); +cnum cobj_eq_hash_op(val, int *, ucnum); +cnum cobj_handle_hash_op(val, int *, ucnum); struct env { obj_common; |