musl-tcc/src/linux/open_by_handle_at.c

9 lines
205 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#define _GNU_SOURCE
#include <fcntl.h>
#include "syscall.h"
int open_by_handle_at(int mount_fd, struct file_handle *handle, int flags)
{
return syscall(SYS_open_by_handle_at, mount_fd, handle, flags);
}