summaryrefslogtreecommitdiff
path: root/userland/libc/sys/mman.h
blob: e3ff734a027226d1dbbe933d95ce2551037ddadc (plain)
1
2
3
4
5
6
7
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