summaryrefslogtreecommitdiffstats
path: root/vendor/time/src/sys/mod.rs
blob: 90bbf7ff3b2f5d1b67b84a057ab0debb2912864f (plain)
1
2
3
4
5
6
7
8
9
//! Functions with a common interface that rely on system calls.

#![allow(unsafe_code)] // We're interfacing with system calls.

#[cfg(feature = "local-offset")]
mod local_offset_at;

#[cfg(feature = "local-offset")]
pub(crate) use local_offset_at::local_offset_at;