Function fchmod [src]
Prototype
pub fn fchmod(fd: i32, mode: mode_t) usize
Parameters
fd: i32
mode: mode_t
Source
pub fn fchmod(fd: i32, mode: mode_t) usize {
return syscall2(.fchmod, @as(usize, @bitCast(@as(isize, fd))), mode);
}
pub fn fchmod(fd: i32, mode: mode_t) usize
fd: i32
mode: mode_t
pub fn fchmod(fd: i32, mode: mode_t) usize {
return syscall2(.fchmod, @as(usize, @bitCast(@as(isize, fd))), mode);
}