#include "asm/unistd_64.h" // for __NR_fchmod #include // for fchmod #include // for mode_t #include // for __syscall_2, syscall int fchmod(int fildes, mode_t mode) { return syscall(fchmod, fildes, mode); }