wireup linux/name_to_handle_at and name_to_handle_at syscalls
[musl.git] / src / linux / memfd_create.c
blob1649fe5548a073dc5da26e9c8e4a645f64df99ff
1 #define _GNU_SOURCE 1
2 #include <sys/mman.h>
3 #include "syscall.h"
5 int memfd_create(const char *name, unsigned flags)
7 return syscall(SYS_memfd_create, name, flags);