1 /* 2 * memfd_create() for uClibc-ng 3 * 4 * Copyright (C) 2024 Waldemar Brodkorb <wbx@uclibc-ng.org> 5 * 6 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. 7 */ 8 9 #include <sys/syscall.h> 10 #include <sys/mman.h> 11 #if defined(__NR_memfd_create) 12 _syscall2(int, memfd_create, const char *, name, unsigned int, flags) 13 #endif 14