release 1.2.5
[musl.git] / src / linux / name_to_handle_at.c
blobcd4075bd7ebf8a19234fd00a2404994e1bf1cde8
1 #define _GNU_SOURCE
2 #include <fcntl.h>
3 #include "syscall.h"
5 int name_to_handle_at(int dirfd, const char *pathname,
6 struct file_handle *handle, int *mount_id, int flags)
8 return syscall(SYS_name_to_handle_at, dirfd,
9 pathname, handle, mount_id, flags);