mmap.c 216 B

12345678910
  1. #include <unistd.h>
  2. #include <sys/mman.h>
  3. #include <errno.h>
  4. #include <sys/syscall.h>
  5. _syscall6 (void *, mmap, void *, start, size_t, length, int, prot, int, flags,
  6. int, fd, off_t, offset)
  7. libc_hidden_def(mmap)