mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
140c902eff
All these additions are to allow Dear ImGui to be compiled natively.
11 lines
169 B
Odin
11 lines
169 B
Odin
package odin_libc
|
|
|
|
import "core:time"
|
|
|
|
clock_t :: i64
|
|
|
|
@(require, linkage="strong", link_name="clock")
|
|
clock :: proc "c" () -> clock_t {
|
|
return time.tick_now()._nsec
|
|
}
|