diff --git a/src/unix/mod.rs b/src/unix/mod.rs index 32c51eec83e4b7b21029c96db2d8df4110ec03eb..9ad121e90b05fd4a89f8ae8533a468c0bea164d6 100644 --- a/src/unix/mod.rs +++ b/src/unix/mod.rs @@ -232,7 +232,6 @@ pub const INADDR_NONE: in_addr_t = 4294967295; cfg_if! { if #[cfg(any(dox, target_os = "l4re"))] { // on dox builds don't pull in anything - // L4Re builds pass the required libs using -Z to the compiler. } else if #[cfg(all(not(stdbuild), feature = "use_std"))] { // cargo build, don't pull in anything extra as the libstd dep // already pulls in all libs. diff --git a/src/unix/uclibc/x86_64/l4re.rs b/src/unix/uclibc/x86_64/l4re.rs index 06a9f09b142a18e2955d2a2170a0c21bdef3eef9..9c517b2b6395e94e0fb8e6a903a2e70852174853 100644 --- a/src/unix/uclibc/x86_64/l4re.rs +++ b/src/unix/uclibc/x86_64/l4re.rs @@ -1,7 +1,7 @@ /// L4Re specifics /// This module contains definitions required by various L4Re libc backends. -/// These are formally not part of the libc, but are a dependency of the libc -/// and hence we should provide them here. +/// Some of them are formally not part of the libc, but are a dependency of the libc and hence we +/// should provide them here. pub type l4_umword_t = ::c_ulong; // Unsigned machine word.