summaryrefslogtreecommitdiff
path: root/iseq.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-17 22:43:38 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-17 22:43:38 +0000
commite7996eb3cc1687d1f70ea8f78befddf821ad3ff0 (patch)
treeec56eb86d91238755b2cfc180342fa495cc402e1 /iseq.c
parentaba879a3f08cebd78ddd76aefceb6bafb8dbf907 (diff)
* internal.h: declare internal functions here.
* node.h: declare NODE dependent internal functions here. * iseq.h: declare rb_iseq_t dependent internal functions here. * vm_core.h: declare rb_thread_t dependent internal functions here. * bignum.c, class.c, compile.c, complex.c, cont.c, dir.c, encoding.c, enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c, io.c, iseq.c, load.c, marshal.c, math.c, numeric.c, object.c, parse.y, proc.c, process.c, range.c, rational.c, re.c, ruby.c, string.c, thread.c, time.c, transcode.c, variable.c, vm.c, tool/compile_prelude.rb: don't declare internal functions declared in above headers. include above headers if required. Note that rb_thread_mark() was declared as void rb_thread_mark(rb_thread_t *th) in cont.c but defined as void rb_thread_mark(void *ptr) in vm.c. Now it is declared as the later in internal.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32156 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/iseq.c b/iseq.c
index b821c602a3..25fc792955 100644
--- a/iseq.c
+++ b/iseq.c
@@ -10,6 +10,7 @@
**********************************************************************/
#include "ruby/ruby.h"
+#include "internal.h"
/* #define RUBY_MARK_FREE_DEBUG 1 */
#include "gc.h"
@@ -217,8 +218,6 @@ set_relation(rb_iseq_t *iseq, const VALUE parent)
}
}
-VALUE rb_realpath_internal(VALUE basedir, VALUE path, int strict);
-
static VALUE
prepare_iseq_build(rb_iseq_t *iseq,
VALUE name, VALUE filename, VALUE filepath, VALUE line_no,