q/lib/mem/alloc_linux.q
2024-08-12 15:31:23 +02:00

5 lines
No EOL
92 B
Text

import sys
alloc(length Int) -> Pointer {
return sys.mmap(0, length, 0x1|0x2, 0x02|0x20)
}