//! Concrete, OS-specific [`SystemClock`](crate::clock::SystemClock) implementations.
//!
//! Only Linux is supported in this initial release. On other platforms, implement
//! [`crate::clock::SystemClock`] yourself — the trait itself requires no feature flag and has
//! no OS dependency.
pub use LinuxClock;