mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-03 19:52:30 +00:00
20 lines
268 B
Odin
20 lines
268 B
Odin
//+private
|
|
//+build freestanding
|
|
package time
|
|
|
|
_IS_SUPPORTED :: false
|
|
|
|
_now :: proc "contextless" () -> Time {
|
|
return {}
|
|
}
|
|
|
|
_sleep :: proc "contextless" (d: Duration) {
|
|
}
|
|
|
|
_tick_now :: proc "contextless" () -> Tick {
|
|
return {}
|
|
}
|
|
|
|
_yield :: proc "contextless" () {
|
|
}
|