diff --git a/src/header/sys_select/mod.rs b/src/header/sys_select/mod.rs index 72b4d65978..c70581db1c 100644 --- a/src/header/sys_select/mod.rs +++ b/src/header/sys_select/mod.rs @@ -23,6 +23,10 @@ use crate::{ /// See . /// +/// Note that the `timeval` struct was specified for +/// [`sys/time.h`](crate::header::sys_time) in the Open Group Base +/// Specifications Issue 7 and prior, see +/// . #[repr(C)] #[derive(Default)] pub struct timeval { diff --git a/src/header/sys_time/mod.rs b/src/header/sys_time/mod.rs index 1a02d5d74f..2637e04076 100644 --- a/src/header/sys_time/mod.rs +++ b/src/header/sys_time/mod.rs @@ -1,6 +1,10 @@ //! `sys/time.h` implementation. //! //! See . +//! +//! Note that since the Open Group Base Specifications Issue 8, the +//! [`timeval`](crate::header::sys_select::timeval) struct has been moved to +//! the [`sys/select.h`](crate::header::sys_select) header. use crate::{ c_str::CStr,