Merge branch 'sys-un-docs' into 'master'

Add docs for sys/un.h

See merge request redox-os/relibc!544
This commit is contained in:
Jeremy Soller
2024-10-31 21:43:34 +00:00
+5
View File
@@ -1,5 +1,10 @@
//! `sys/un.h` implementation.
//!
//! See <https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/sys_un.h.html>.
use crate::{header::sys_socket::sa_family_t, platform::types::*};
/// See <https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/sys_un.h.html>.
#[repr(C)]
pub struct sockaddr_un {
pub sun_family: sa_family_t,