1 | //! Functions with a common interface that rely on system calls. |
---|---|
2 | |
3 | #[cfg(feature = "local-offset")] |
4 | mod local_offset_at; |
5 | #[cfg(feature = "local-offset")] |
6 | mod refresh_tz; |
7 | |
8 | #[cfg(feature = "local-offset")] |
9 | pub(crate) use self::local_offset_at::local_offset_at; |
10 | #[cfg(feature = "local-offset")] |
11 | pub(crate) use self::refresh_tz::{refresh_tz, refresh_tz_unchecked}; |
12 |