musl-tcc/src/linux/name_to_handle_at.c

11 lines
259 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#define _GNU_SOURCE
#include <fcntl.h>
#include "syscall.h"
int name_to_handle_at(int dirfd, const char *pathname,
struct file_handle *handle, int *mount_id, int flags)
{
return syscall(SYS_name_to_handle_at, dirfd,
pathname, handle, mount_id, flags);
}