Remove superflouos doc comments

This commit is contained in:
Sebastian Humenda 2017-08-17 09:20:03 +02:00
parent 9b4edb0b83
commit 3a1c83cf3c
2 changed files with 2 additions and 3 deletions

View File

@ -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.

View File

@ -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.