diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-08-21 11:10:24 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-08-21 11:10:24 +0000 |
commit | 72c811a3d8a4bfe4b98219f225cc20784e373122 (patch) | |
tree | 4dd8937bc0c37471dc4aa7a532584d12c66384d7 /vm.c | |
parent | d1b77f5eee442d6104b92e7edf272c8bdac6be44 (diff) | |
download | ruby-72c811a3d8a4bfe4b98219f225cc20784e373122.tar.gz |
* vm.c: add missing prototype of rb_iseq_clone for r29063.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29064 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.c')
-rw-r--r-- | vm.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1835,6 +1835,8 @@ rb_thread_alloc(VALUE klass) return self; } +VALUE rb_iseq_clone(VALUE iseqval, VALUE newcbase); + static void vm_define_method(rb_thread_t *th, VALUE obj, ID id, VALUE iseqval, rb_num_t is_singleton, NODE *cref) |