q/lib/mem/alloc_windows.q

5 lines
No EOL
88 B
Text

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