fchmod.c 119 B

1234567
  1. #include <sys/stat.h>
  2. #include "syscall.h"
  3. int fchmod(int fd, mode_t mode)
  4. {
  5. return syscall(SYS_fchmod, fd, mode);
  6. }