mach/src/time/main.zig
Stephen Gutekanst 133c89638b all: move mach.Timer, core Timer/Frequency to mach.time module
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
2024-08-25 14:24:09 -07:00

11 lines
206 B
Zig

pub const std = @import("std");
pub const ns_per_s = std.time.ns_per_s;
pub const Timer = @import("Timer.zig");
pub const Frequency = @import("Frequency.zig");
test {
_ = Timer;
_ = Frequency;
}