mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-25 15:05:00 -07: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