use clockid_t;
extern "C"
const CLOCK_MONOTONIC_RAW: clockid_t = 4;
const CLOCK_UPTIME_RAW: clockid_t = 8;
/// The time from a clock that increments monotonically,
/// tracking the time since an arbitrary point.
///
/// See [`clock_gettime_nsec_np`].
///
/// [`clock_gettime_nsec_np`]: https://opensource.apple.com/source/Libc/Libc-1158.1.2/gen/clock_gettime.3.auto.html
/// The time from a clock that increments monotonically,
/// in the same manner as CLOCK_MONOTONIC_RAW,
/// but that does not increment while the system is asleep.
///
/// See `clock_gettime_nsec_np`.