mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-28 08:11:49 -07:00
8 lines
122 B
Odin
8 lines
122 B
Odin
//+private
|
|
//+build windows
|
|
package time
|
|
|
|
_get_tsc_frequency :: proc "contextless" () -> (u64, bool) {
|
|
return 0, false
|
|
}
|