1//! Functions with a common interface that rely on system calls.
2
3#![allow(unsafe_code)] // We're interfacing with system calls.
4
5#[cfg(feature = "local-offset")]
6mod local_offset_at;
7
8#[cfg(feature = "local-offset")]
9pub(crate) use local_offset_at::local_offset_at;
10