Improved type system

This commit is contained in:
Eduard Urbach 2024-08-08 12:55:25 +02:00
parent 8eabcf258d
commit 69a5fdc703
Signed by: eduard
GPG key ID: 49226B848C78F6C8
20 changed files with 111 additions and 67 deletions

View file

@ -22,7 +22,7 @@ munmap(address Pointer, length Int) -> Int {
return syscall(11, address, length)
}
clone(flags Int, stack Pointer) -> ThreadID {
clone(flags Int, stack Pointer) -> Int {
return syscall(56, flags, stack)
}