[前][次][番号順一覧][スレッド一覧]

ruby-changes:16378

From: naruse <ko1@a...>
Date: Fri, 18 Jun 2010 10:16:30 +0900 (JST)
Subject: [ruby-changes:16378] Ruby:r28358 (trunk): * ruby.c: add prototype of rb_realpath_internal.

naruse	2010-06-18 10:16:13 +0900 (Fri, 18 Jun 2010)

  New Revision: 28358

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=28358

  Log:
    * ruby.c: add prototype of rb_realpath_internal.
    
    * load.c: ditto.

  Modified files:
    trunk/ChangeLog
    trunk/load.c
    trunk/ruby.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 28357)
+++ ChangeLog	(revision 28358)
@@ -1,3 +1,9 @@
+Fri Jun 18 10:15:12 2010  NARUSE, Yui  <naruse@r...>
+
+	* ruby.c: add prototype of rb_realpath_internal.
+
+	* load.c: ditto.
+
 Fri Jun 18 01:50:21 2010  Yusuke Endoh  <mame@t...>
 
 	* object.c: Object#public_methods, private_methods, etc. returns
Index: load.c
===================================================================
--- load.c	(revision 28357)
+++ load.c	(revision 28358)
@@ -260,6 +260,7 @@
 }
 
 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)
Index: ruby.c
===================================================================
--- ruby.c	(revision 28357)
+++ ruby.c	(revision 28358)
@@ -1230,6 +1230,7 @@
 
 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)

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]