Improved type system

This commit is contained in:
2025-02-09 23:52:07 +01:00
parent 7634244c56
commit f19d9063a5
30 changed files with 132 additions and 85 deletions

View File

@ -1,4 +1,4 @@
clone(flags Int, stack Pointer) -> Int {
clone(flags Int, stack *Any) -> Int {
return syscall(56, flags, stack)
}
@ -6,7 +6,7 @@ fork() -> Int {
return syscall(57)
}
execve(path Pointer, argv Pointer, envp Pointer) -> Int {
execve(path *Any, argv *Any, envp *Any) -> Int {
return syscall(59, path, argv, envp)
}
@ -14,6 +14,6 @@ exit(status Int) {
syscall(60, status)
}
waitid(type Int, id Int, info Pointer, options Int) -> Int {
waitid(type Int, id Int, info *Any, options Int) -> Int {
return syscall(247, type, id, info, options)
}