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

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

#[cfg(feature = "local-offset")]
pub(crate) use self::local_offset_at::local_offset_at;
#[cfg(feature = "local-offset")]
pub(crate) use self::refresh_tz::{refresh_tz, refresh_tz_unchecked};