* ext/pathname/pathname.c (path_lstat): Pathname#lstat translated

from pathname.rb.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28971 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2010-08-12 12:18:44 +00:00
parent 2b1f8574c7
commit 98f53d5db2
3 changed files with 15 additions and 3 deletions

View file

@ -384,6 +384,15 @@ path_stat(VALUE self)
return rb_funcall(rb_cFile, rb_intern("stat"), 1, get_strpath(self));
}
/*
* See <tt>File.lstat</tt>.
*/
static VALUE
path_lstat(VALUE self)
{
return rb_funcall(rb_cFile, rb_intern("lstat"), 1, get_strpath(self));
}
/*
* == Pathname
*
@ -599,4 +608,5 @@ Init_pathname()
rb_define_method(rb_cPathname, "readlink", path_readlink, 0);
rb_define_method(rb_cPathname, "rename", path_rename, 1);
rb_define_method(rb_cPathname, "stat", path_stat, 0);
rb_define_method(rb_cPathname, "lstat", path_lstat, 0);
}