= private = protected
lchmod(*args)
Equivalent to File::chmod, but does not follow symbolic links (so it will change the permissions associated with the link, not the file referenced by the link). Often not available.
static VALUE rb_file_s_lchmod(int argc, VALUE *argv) { long mode; apply2args(1); mode = NUM2INT(*argv++); return apply2files(lchmod_internal, argc, argv, (void *)(long)mode); }