9 lines
128 B
Plaintext

import sys
alloc(length) {
return sys.mmap(0, length, 3, 290)
}
free(address, length) {
return sys.munmap(address, length)
}