Function fchmodat [src]
Prototype
pub fn fchmodat(fd: i32, path: [*:0]const u8, mode: mode_t, _: u32) usize Parameters
fd: i32path: [*:0]const u8mode: mode_t_: u32 Source
pub fn fchmodat(fd: i32, path: [*:0]const u8, mode: mode_t, _: u32) usize {
return syscall3(.fchmodat, @bitCast(@as(isize, fd)), @intFromPtr(path), mode);
}