aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/libc_compat/memfd_create.c
blob: a33a52209a8ba02f4a4907e869ae8fb436d00f2a (plain) (blame)
1
2
3
4
5
6
7
8
9
#define _GNU_SOURCE 1 
#include <sys/mman.h> 
#include "syscall.h" 
#include <linux/unistd.h>
 
int memfd_create(const char *name, unsigned flags) 
{ 
	return syscall(__NR_memfd_create, name, flags);
}