From 72fa4d34c09a59c6127365832e8f04b50fdd9916 Mon Sep 17 00:00:00 2001 From: naruse Date: Fri, 18 Jun 2010 01:16:13 +0000 Subject: [PATCH] * ruby.c: add prototype of rb_realpath_internal. * load.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28358 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ load.c | 1 + ruby.c | 1 + 3 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 89e500e3ef..d3fbfd790d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Fri Jun 18 10:15:12 2010 NARUSE, Yui + + * ruby.c: add prototype of rb_realpath_internal. + + * load.c: ditto. + Fri Jun 18 01:50:21 2010 Yusuke Endoh * object.c: Object#public_methods, private_methods, etc. returns diff --git a/load.c b/load.c index a0e5a4b5da..891eae48ee 100644 --- a/load.c +++ b/load.c @@ -260,6 +260,7 @@ rb_provide(const char *feature) } NORETURN(static void load_failed(VALUE)); +VALUE rb_realpath_internal(VALUE basedir, VALUE path, int strict); static void rb_load_internal(VALUE fname, int wrap) diff --git a/ruby.c b/ruby.c index 75ea88fac8..4dc0003e27 100644 --- a/ruby.c +++ b/ruby.c @@ -1230,6 +1230,7 @@ rb_f_chomp(argc, argv) void rb_stdio_set_default_encoding(void); VALUE rb_parser_dump_tree(NODE *node, int comment); +VALUE rb_realpath_internal(VALUE basedir, VALUE path, int strict); static VALUE process_options(int argc, char **argv, struct cmdline_options *opt)