summaryrefslogtreecommitdiff
path: root/ext/pathname/pathname.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-07 21:26:33 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-07 21:26:33 +0000
commitc37ec5c9d2b5a45443149af56f1312956591a8b4 (patch)
tree4acb776199836a0c94685d37c038f706605e0091 /ext/pathname/pathname.c
parent8e3c2ced73e6e8b149b1567b84e621041add19a4 (diff)
* ext/pathname/pathname.c (path_setuid_p): Pathname#setuid? translated
from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29194 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/pathname/pathname.c')
-rw-r--r--ext/pathname/pathname.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c
index d4eea84faf..bd221b0767 100644
--- a/ext/pathname/pathname.c
+++ b/ext/pathname/pathname.c
@@ -724,6 +724,15 @@ path_readable_real_p(VALUE self)
}
/*
+ * See <tt>FileTest.setuid?</tt>.
+ */
+static VALUE
+path_setuid_p(VALUE self)
+{
+ return rb_funcall(rb_mFileTest, rb_intern("setuid?"), 1, get_strpath(self));
+}
+
+/*
* == Pathname
*
* Pathname represents a pathname which locates a file in a filesystem.
@@ -966,4 +975,5 @@ Init_pathname()
rb_define_method(rb_cPathname, "readable?", path_readable_p, 0);
rb_define_method(rb_cPathname, "world_readable?", path_world_readable_p, 0);
rb_define_method(rb_cPathname, "readable_real?", path_readable_real_p, 0);
+ rb_define_method(rb_cPathname, "setuid?", path_setuid_p, 0);
}