mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
d35f8ea885
commit
72fa4d34c0
3 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
Fri Jun 18 10:15:12 2010 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* ruby.c: add prototype of rb_realpath_internal.
|
||||
|
||||
* load.c: ditto.
|
||||
|
||||
Fri Jun 18 01:50:21 2010 Yusuke Endoh <mame@tsg.ne.jp>
|
||||
|
||||
* object.c: Object#public_methods, private_methods, etc. returns
|
||||
|
|
1
load.c
1
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)
|
||||
|
|
1
ruby.c
1
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)
|
||||
|
|
Loading…
Reference in a new issue