redox/arch/test/src/time.rs
2016-11-14 11:04:31 -07:00

8 lines
96 B
Rust

pub fn monotonic() -> (u64, u64) {
(0, 0)
}
pub fn realtime() -> (u64, u64) {
(0, 0)
}