refactor: add a async read/write variant to device ops, with allow async io to be...
[lunaix-os.git] / lunaix-os / usr / libc / includes / lunaix / mann.h
1 #ifndef __LUNAIX_SYS_MANN_H
2 #define __LUNAIX_SYS_MANN_H
3
4 #include <stddef.h>
5 #include <lunaix/mann_flags.h>
6 #include <lunaix/types.h>
7
8 extern void* mmap(void* addr, size_t length, int proct, int flags, int fd, off_t offset);
9
10 extern void munmap(void* addr, size_t length);
11
12 #endif /* __LUNAIX_MANN_H */