flst / upstream /emscripten /system /lib /libc /musl /src /linux /memfd_create.c
arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
169 Bytes
#define _GNU_SOURCE 1
#include <sys/mman.h>
#include "syscall.h"
int memfd_create(const char *name, unsigned flags)
{
return syscall(SYS_memfd_create, name, flags);
}