1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

rename to noatime?

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56584 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2016-11-05 08:59:42 +00:00
parent 365c321585
commit 8d2e44c270

View file

@ -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);
}