_mmap.c 236 B

123456789
  1. /* Use new style mmap for microblaze */
  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);