mte/unikernel/duniverse/eqaf/clock/clock_windows.ml
2025-11-11 02:07:51 +01:00

5 lines
212 B
OCaml

external clock_windows_get_time : unit -> int64 = "clock_windows_get_time"
external clock_windows_init : unit -> unit = "clock_windows_init"
let () = clock_windows_init ()
let now () = clock_windows_get_time ()