1//! Time-related operations.
2
3mod clock;
4#[cfg(any(linux_kernel, target_os = "fuchsia"))]
5mod timerfd;
6
7// TODO: Convert WASI'S clock APIs to use handles rather than ambient clock
8// identifiers, update `wasi-libc`, and then add support in `rustix`.
9pub use clock::*;
10#[cfg(any(linux_kernel, target_os = "fuchsia"))]
11pub use timerfd::*;
12