mmap.c 246 B

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