Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
linux
memfd_create.c
pretty
plain
permalink
blame
history
•
8 lines
•
169 B
1
#define _GNU_SOURCE 1
2
#include <sys/mman.h>
3
#include "syscall.h"
4
5
int memfd_create(const char *name, unsigned flags)
6
{
7
	return syscall(SYS_memfd_create, name, flags);
8
}