documentation update, readme reformatted
[lunaix-os.git] / lunaix-os / usr / libc / includes / sys / mman.h
1 #ifndef __LUNALIBC_SYS_MANN_H
2 #define __LUNALIBC_SYS_MANN_H
3
4 #include <stddef.h>
5 #include <lunaix/mman.h>
6 #include <sys/types.h>
7
8 void* mmap(void* addr, size_t length, int proct, int flags, int fd, off_t offset);
9
10 int munmap(void* addr, size_t length);
11
12 #endif /* __LUNALIBC_MANN_H */