mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-07 16:18:52 +00:00
Add dummy time_freestanding.odin
This commit is contained in:
@@ -0,0 +1,15 @@
|
|||||||
|
//+build freestanding
|
||||||
|
package time
|
||||||
|
|
||||||
|
IS_SUPPORTED :: false
|
||||||
|
|
||||||
|
now :: proc() -> Time {
|
||||||
|
return Time{}
|
||||||
|
}
|
||||||
|
|
||||||
|
sleep :: proc(d: Duration) {
|
||||||
|
}
|
||||||
|
|
||||||
|
_tick_now :: proc "contextless" () -> Tick {
|
||||||
|
return Tick{}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user