diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-23 08:10:20 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-23 08:10:20 +0000 |
commit | 68a533c61164392a9524d19f11f163a6c7e811ba (patch) | |
tree | 03f8d8bb69766cbf5ca4fd3dba9e586289213f48 /class.c | |
parent | 75b10ac6963531e60690064dbf2e40bd5cbd018e (diff) | |
download | ruby-68a533c61164392a9524d19f11f163a6c7e811ba.tar.gz |
* class.c, vm_core.h: move decl of rb_iseq_clone() to class.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19476 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'class.c')
-rw-r--r-- | class.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -70,6 +70,8 @@ struct clone_method_data { VALUE klass; }; +VALUE rb_iseq_clone(VALUE iseqval, VALUE newcbase); + static int clone_method(ID mid, NODE *body, struct clone_method_data *data) { |