1
0

name_to_handle_at.c 259 B

12345678910
  1. #define _GNU_SOURCE
  2. #include <fcntl.h>
  3. #include "syscall.h"
  4. int name_to_handle_at(int dirfd, const char *pathname,
  5. struct file_handle *handle, int *mount_id, int flags)
  6. {
  7. return syscall(SYS_name_to_handle_at, dirfd,
  8. pathname, handle, mount_id, flags);
  9. }