diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-05 23:08:47 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-05 23:08:47 +0000 |
commit | 98c50b0b9355d315246b0bbb69171bdb50ba725a (patch) | |
tree | 47c785076f5a27eacc0ced1199acdd515212700d /hash.c | |
parent | 833c2375aa22756256a58ef05ad0860d2e80617a (diff) | |
download | ruby-98c50b0b9355d315246b0bbb69171bdb50ba725a.tar.gz |
* hash.c:rb_hash_hash_i() should be static. [ruby-core:04815]
* re.c should include regint.h for declarations of oniguruma
functions. [ruby-core:04815]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8404 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r-- | hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1496,7 +1496,7 @@ rb_hash_eql(hash1, hash2) return hash_equal(hash1, hash2, Qtrue); } - +static int rb_hash_hash_i(key, value, hp) VALUE key, value; long *hp; |