From 98c50b0b9355d315246b0bbb69171bdb50ba725a Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 5 May 2005 23:08:47 +0000 Subject: * 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 --- ChangeLog | 7 +++++++ hash.c | 2 +- re.c | 1 + 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a88005024c..0a828399d5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Fri May 6 08:08:37 2005 Nobuyoshi Nakada + + * 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] + Sun May 1 09:15:17 2005 Nobuyoshi Nakada * ruby.c (process_sflag): replace '-' in variable names with '_'. diff --git a/hash.c b/hash.c index 9c96e8e7db..a896a95416 100644 --- a/hash.c +++ b/hash.c @@ -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; diff --git a/re.c b/re.c index 10fe8c68d3..d88427c791 100644 --- a/re.c +++ b/re.c @@ -11,6 +11,7 @@ #include "ruby.h" #include "re.h" +#include "regint.h" #include #define MBCTYPE_ASCII 0 -- cgit v1.2.3