/// Used by the NTP daemon to adjust the system clock to an externally derived time.
pubunsafefnntp_adjtime(time:&mut timex_t)->Result<i32, Errno>{let time_ptr =core::ptr::from_mut(time)asusize;unsafe{syscall1(SYS_NTP_ADJTIME, time_ptr).map(|val|val asi32)}}