summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-02-17 07:11:22 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-02-17 07:11:22 +0000
commite83d532ff8b7d3c6eeaee3931d8b00df19c5f538 (patch)
treea2c90999001ebcb8fd2fd67ffb3d5911a8e98f81 /hash.c
parent154193050b7878e290f9f166279c18e01ef44ad6 (diff)
downloadruby-e83d532ff8b7d3c6eeaee3931d8b00df19c5f538.tar.gz
ruby-e83d532ff8b7d3c6eeaee3931d8b00df19c5f538.tar.xz
ruby-e83d532ff8b7d3c6eeaee3931d8b00df19c5f538.zip
2000-02-17
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@618 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/hash.c b/hash.c
index 4ead5862c..ea42674ec 100644
--- a/hash.c
+++ b/hash.c
@@ -34,6 +34,13 @@ rb_hash_modify(hash)
rb_raise(rb_eSecurityError, "Insecure: can't modify hash");
}
+VALUE
+rb_hash_freeze(hash)
+ VALUE hash;
+{
+ return rb_obj_freeze(hash);
+}
+
VALUE rb_cHash;
static VALUE envtbl;