q/lib/mem/alloc_windows.q
2024-08-19 17:25:51 +02:00

5 lines
No EOL
88 B
Text

import sys
alloc(length Int) -> Pointer {
return sys.mmap(0, length, 0x0004, 0x3000)
}