q/lib/mem/free.q

5 lines
No EOL
92 B
Text

import sys
free(address Pointer, length Int) -> Int {
return sys.munmap(address, length)
}