mirror of
https://github.com/odin-lang/Odin.git
synced 2026-05-29 23:25:09 +00:00
9 lines
83 B
Odin
9 lines
83 B
Odin
package unix
|
|
|
|
import "core:c"
|
|
|
|
timespec :: struct {
|
|
secs: i64,
|
|
nsecs: c.long,
|
|
}
|