Add dummy time_freestanding.odin

This commit is contained in:
gingerBill
2021-11-09 16:35:50 +00:00
parent 50562440bf
commit a9ea590d24
+15
View File
@@ -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{}
}