diff options
| author | Laytan <laytanlaats@hotmail.com> | 2024-10-28 19:45:31 +0100 |
|---|---|---|
| committer | Laytan <laytanlaats@hotmail.com> | 2024-10-28 19:58:39 +0100 |
| commit | 7e12e37df900e2264a45d65574cda30b9faeedeb (patch) | |
| tree | a24d8a253cb4fb30d0a59802f2af77ec8edb2661 /core/sys/unix | |
| parent | b7140875cfb3b699fc26001936a8974b71b6aafb (diff) | |
fix test
Diffstat (limited to 'core/sys/unix')
| -rw-r--r-- | core/sys/unix/unix.odin | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/core/sys/unix/unix.odin b/core/sys/unix/unix.odin index 0291d0d4a..e9f58e554 100644 --- a/core/sys/unix/unix.odin +++ b/core/sys/unix/unix.odin @@ -1,5 +1,8 @@ package unix -import "core:sys/posix" +import "core:c" -timespec :: posix.timespec +timespec :: struct { + secs: i64, + nsecs: c.long, +} |