summaryrefslogtreecommitdiff
path: root/ext/-test-/file/fs.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-05 08:59:42 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-05 08:59:42 +0000
commit8d2e44c2703d130bdc7005c397251a29351c34fc (patch)
treef5806e10cacc2eefc6f7851ab6cc0616336c28f9 /ext/-test-/file/fs.c
parent365c3215855ae2f4412a8e198d7d4facd27a7d67 (diff)
rename to noatime?
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56584 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/-test-/file/fs.c')
-rw-r--r--ext/-test-/file/fs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/-test-/file/fs.c b/ext/-test-/file/fs.c
index 06f03756ad..c9c3473257 100644
--- a/ext/-test-/file/fs.c
+++ b/ext/-test-/file/fs.c
@@ -79,7 +79,7 @@ get_fsname(VALUE self, VALUE str)
}
VALUE
-get_atime_p(VALUE self, VALUE str)
+get_noatime_p(VALUE self, VALUE str)
{
#ifdef STATFS
statfs_t st;
@@ -104,5 +104,5 @@ Init_fs(VALUE module)
{
VALUE fs = rb_define_module_under(module, "Fs");
rb_define_module_function(fs, "fsname", get_fsname, 1);
- rb_define_module_function(fs, "atime?", get_atime_p, 1);
+ rb_define_module_function(fs, "noatime?", get_noatime_p, 1);
}