| 1198 | } |
| 1199 | |
| 1200 | static void *mmap(void *addr, size_t length, int prot, int flags, int fd, |
| 1201 | off_t offset) |
| 1202 | { |
| 1203 | return (void *)syscall(SYS_mmap, addr, length, prot, flags, fd, offset); |
| 1204 | } |
| 1205 | |
| 1206 | static int mprotect(void *addr, size_t len, int prot) |
| 1207 | { |
no outgoing calls
no test coverage detected