diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-08 13:10:04 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-08 13:10:04 +0000 |
| commit | 244398acccc1068be3ec7518ee53ad159dafc88e (patch) | |
| tree | 87743fd1893484f1af704d20e3695810ea21a893 /include/ruby/intern.h | |
| parent | dad2844df90b2834171e95c0a17d90d0180e4929 (diff) | |
| download | ruby-244398acccc1068be3ec7518ee53ad159dafc88e.tar.gz ruby-244398acccc1068be3ec7518ee53ad159dafc88e.tar.xz ruby-244398acccc1068be3ec7518ee53ad159dafc88e.zip | |
* include/ruby/st.h (st_hash_func): use st_index_t.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24792 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/intern.h')
| -rw-r--r-- | include/ruby/intern.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h index 9ebf5d6c5..3adec625d 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -633,12 +633,12 @@ VALUE rb_str_cat(VALUE, const char*, long); VALUE rb_str_cat2(VALUE, const char*); VALUE rb_str_append(VALUE, VALUE); VALUE rb_str_concat(VALUE, VALUE); -int rb_memhash(const void *ptr, long len); +st_index_t rb_memhash(const void *ptr, long len); VALUE rb_hash_start(VALUE); VALUE rb_hash_uint32(VALUE, unsigned int); VALUE rb_hash_uint(VALUE, VALUE); VALUE rb_hash_end(VALUE); -int rb_str_hash(VALUE); +st_index_t rb_str_hash(VALUE); int rb_str_hash_cmp(VALUE,VALUE); int rb_str_comparable(VALUE, VALUE); int rb_str_cmp(VALUE, VALUE); |
