fchdir.c 98 B

1234567
  1. #include <unistd.h>
  2. #include "syscall.h"
  3. int fchdir(int fd)
  4. {
  5. return syscall(SYS_fchdir, fd);
  6. }