_mmap.c 229 B

12345678
  1. /* Use new style mmap for mips */
  2. #include <unistd.h>
  3. #include <errno.h>
  4. #include <sys/mman.h>
  5. #include <sys/syscall.h>
  6. _syscall6 (__ptr_t, mmap, __ptr_t, addr, size_t, len, int, prot,
  7. int, flags, int, fd, __off_t, offset);