diff options
Diffstat (limited to 'userland/libc/sys/mman.h')
-rw-r--r-- | userland/libc/sys/mman.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/userland/libc/sys/mman.h b/userland/libc/sys/mman.h new file mode 100644 index 0000000..e3ff734 --- /dev/null +++ b/userland/libc/sys/mman.h @@ -0,0 +1,8 @@ +#ifndef MMAP_H +#define MMAP_H +#include <stdint.h> +#include <stddef.h> + +void *mmap(void *addr, size_t length, int prot, int flags, int fd, + size_t offset); +#endif |