wireup linux/name_to_handle_at and name_to_handle_at syscalls
[musl.git] / src / linux / open_by_handle_at.c
blob1c9b6a2be4df8e0f5af8e80bb2530c7979c60418
1 #define _GNU_SOURCE
2 #include <fcntl.h>
3 #include "syscall.h"
5 int open_by_handle_at(int mount_fd, struct file_handle *handle, int flags)
7 return syscall(SYS_open_by_handle_at, mount_fd, handle, flags);