summaryrefslogtreecommitdiff
path: root/api/posix/sys/mman.h
blob: dde74c03cf5f52a48505b4e08cd47f7e9ba3d755 (plain)
1
2
3
4
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);