summaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-13 02:46:54 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-13 02:46:54 +0000
commit69a1dd4bddd8b665921ba50eaac02299198a24f1 (patch)
treeeee512d605099888148c1a13167c28982846e04e /vm_core.h
parent9d7a75c7d6fb4979577edb6f9c9471802123ae0b (diff)
downloadruby-69a1dd4bddd8b665921ba50eaac02299198a24f1.tar.gz
ruby-69a1dd4bddd8b665921ba50eaac02299198a24f1.tar.xz
ruby-69a1dd4bddd8b665921ba50eaac02299198a24f1.zip
* vm_core.h: Declare rb_iseq_clone, which is used in class.c.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18552 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vm_core.h b/vm_core.h
index f1a24e5f9..25017cdab 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -507,6 +507,7 @@ VALUE rb_iseq_compile(VALUE src, VALUE file, VALUE line);
VALUE ruby_iseq_disasm(VALUE self);
VALUE ruby_iseq_disasm_insn(VALUE str, VALUE *iseqval, int pos, rb_iseq_t *iseq, VALUE child);
const char *ruby_node_name(int node);
+VALUE rb_iseq_clone(VALUE iseqval, VALUE newcbase);
RUBY_EXTERN VALUE rb_cISeq;
RUBY_EXTERN VALUE rb_cRubyVM;