summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/linux/open_by_handle_at.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/linux/open_by_handle_at.c')
-rw-r--r--libc-top-half/musl/src/linux/open_by_handle_at.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/linux/open_by_handle_at.c b/libc-top-half/musl/src/linux/open_by_handle_at.c
new file mode 100644
index 0000000..1c9b6a2
--- /dev/null
+++ b/libc-top-half/musl/src/linux/open_by_handle_at.c
@@ -0,0 +1,8 @@
+#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);
+}