Added write syscall for Mac on arm64
All checks were successful
/ test (push) Successful in 25s

This commit is contained in:
Eduard Urbach 2025-07-05 14:24:41 +02:00
parent 917dc081b1
commit ec4f774b64
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
2 changed files with 3 additions and 0 deletions

3
lib/io/write_mac_x86.q Normal file
View file

@ -0,0 +1,3 @@
write(buffer string) -> (written int) {
return syscall(0x2000004, 1, buffer.ptr, buffer.len)
}