Implemented structs

This commit is contained in:
Eduard Urbach 2025-02-04 18:16:31 +01:00
parent 50fc8c6249
commit e36d9fade3
Signed by: eduard
GPG key ID: 49226B848C78F6C8
32 changed files with 267 additions and 63 deletions

View file

@ -22,8 +22,8 @@ munmap(address Pointer, length Int) -> Int {
return syscall(11, address, length)
}
nanosleep(timespec Pointer) -> Int {
return syscall(35, timespec, 0)
nanosleep(duration Pointer) -> Int {
return syscall(35, duration, 0)
}
clone(flags Int, stack Pointer) -> Int {