summaryrefslogtreecommitdiff
path: root/userland/libc/sys/mman.h
blob: a915291b2070316c168b6995d187a5c710350ab8 (plain)
1
2
3
4
5
6
7
8
#ifndef MMAP_H
#define MMAP_H
#include <stddef.h>
#include <stdint.h>

void *mmap(void *addr, size_t length, int prot, int flags, int fd,
           size_t offset);
#endif