memfd_create.c\linux\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/linux/memfd_create.c
blob: 1649fe5548a073dc5da26e9c8e4a645f64df99ff (plain) (blame)
1
2
3
4
5
6
7
8
#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);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年11月07日 15:24:57 +0000

AltStyle によって変換されたページ (->オリジナル) /