Skip to content
Snippets Groups Projects
Commit 3a1c83cf authored by Sebastian Humenda's avatar Sebastian Humenda
Browse files

Remove superflouos doc comments

parent 9b4edb0b
No related branches found
No related tags found
No related merge requests found
...@@ -232,7 +232,6 @@ pub const INADDR_NONE: in_addr_t = 4294967295; ...@@ -232,7 +232,6 @@ pub const INADDR_NONE: in_addr_t = 4294967295;
cfg_if! { cfg_if! {
if #[cfg(any(dox, target_os = "l4re"))] { if #[cfg(any(dox, target_os = "l4re"))] {
// on dox builds don't pull in anything // 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"))] { } else if #[cfg(all(not(stdbuild), feature = "use_std"))] {
// cargo build, don't pull in anything extra as the libstd dep // cargo build, don't pull in anything extra as the libstd dep
// already pulls in all libs. // already pulls in all libs.
......
/// L4Re specifics /// L4Re specifics
/// This module contains definitions required by various L4Re libc backends. /// 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 /// Some of them are formally not part of the libc, but are a dependency of the libc and hence we
/// and hence we should provide them here. /// should provide them here.
pub type l4_umword_t = ::c_ulong; // Unsigned machine word. pub type l4_umword_t = ::c_ulong; // Unsigned machine word.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment