From f2103ee4a99c8a6ad7498dc500e214406ee47472 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 26 Sep 2009 14:29:13 +0000 Subject: * st.c: moved murmur hash from string.c. [ruby-dev:39376] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25106 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/intern.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/ruby/intern.h') diff --git a/include/ruby/intern.h b/include/ruby/intern.h index e01e2d36ff..b829c2741b 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -639,6 +639,9 @@ st_index_t rb_hash_start(st_index_t); st_index_t rb_hash_uint32(st_index_t, uint32_t); st_index_t rb_hash_uint(st_index_t, st_index_t); st_index_t rb_hash_end(st_index_t); +#define rb_hash_uint32(h, i) st_hash_uint32(h, i) +#define rb_hash_uint(h, i) st_hash_uint(h, i) +#define rb_hash_end(h) st_hash_end(h) st_index_t rb_str_hash(VALUE); int rb_str_hash_cmp(VALUE,VALUE); int rb_str_comparable(VALUE, VALUE); -- cgit v1.2.3