diff options
Diffstat (limited to 'api/posix/sys/mman.h')
| -rw-r--r-- | api/posix/sys/mman.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/api/posix/sys/mman.h b/api/posix/sys/mman.h new file mode 100644 index 0000000..dde74c0 --- /dev/null +++ b/api/posix/sys/mman.h @@ -0,0 +1,5 @@ +#pragma once + +void *mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset); +int munmap(void *addr, size_t length); + |
