memfd_create.c 336 B

12345678910111213
  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. #include <sys/syscall.h>
  9. #include <sys/mman.h>
  10. #if defined(__NR_memfd_create)
  11. _syscall2(int, memfd_create, const char *, name, unsigned int, flags)
  12. #endif