* Default mmap() routine. */
| 148 | * Default mmap() routine. |
| 149 | */ |
| 150 | static intptr_t e9mmap(void *ptr, size_t len, int prot, int flags, int fd, |
| 151 | off_t offset) |
| 152 | { |
| 153 | return e9syscall(SYS_mmap, ptr, len, prot, flags, fd, offset); |
| 154 | } |
| 155 | |
| 156 | /* |
| 157 | * Allocate or get scratch. |