blob: 65c1ef0178b4721318f6669f1cf8449a1fbf5be3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "_syscall.h"
#define mmap(_a, _l, _p, _fl, _fd, _o) (void*)__syscall(__sys_mmap, _a, _l, _p, _fl, _fd, _o)
#define PROT_NONE 0x0
#define PROT_READ 0x1
#define PROT_WRITE 0x2
#define MAP_PRIVATE 0x02
#define MAP_FAILED (void*)(-1)
#define MAP_ANONYMOUS (0x20)
|