Improved scanner
All checks were successful
/ test (push) Successful in 13s

This commit is contained in:
Eduard Urbach 2025-06-19 21:39:04 +02:00
parent adfcd4b60c
commit 9b51680af5
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
8 changed files with 202 additions and 0 deletions

3
lib/os/os_linux.q Normal file
View file

@ -0,0 +1,3 @@
write(fd int, buffer *byte, length int) -> int {
return syscall(1, fd, buffer, length)
}