Simplified standard library

This commit is contained in:
2025-02-17 17:49:42 +01:00
parent b8e37fafae
commit b7685fd7ec
25 changed files with 232 additions and 231 deletions

View File

@ -13,7 +13,6 @@ const state {
main() {
length := 256
command := mem.alloc(length)
siginfo := mem.alloc(128)
loop {
io.out("λ ")
@ -31,6 +30,6 @@ main() {
return
}
sys.waitid(idtype.pid, pid, siginfo, state.exited)
sys.waitid(idtype.pid, pid, 0, state.exited)
}
}