Improved error handling for struct types

This commit is contained in:
2025-02-08 16:29:56 +01:00
parent 97cdcbd1cb
commit 526385280a
5 changed files with 22 additions and 9 deletions

View File

@ -1,3 +1,8 @@
nanosleep(duration Pointer) -> Int {
struct timespec {
seconds Int
nanoseconds Int
}
nanosleep(duration *timespec) -> Int {
return syscall(35, duration, 0)
}