Fixed memory allocation on MacOS

This commit is contained in:
Eduard Urbach 2024-08-12 15:31:23 +02:00
parent de223908d7
commit 81b0cd813c
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
3 changed files with 10 additions and 4 deletions

5
lib/mem/free.q Normal file
View file

@ -0,0 +1,5 @@
import sys
free(address Pointer, length Int) -> Int {
return sys.munmap(address, length)
}