about summary refs log tree commit diff
path: root/library/std/src/sys/mod.rs
diff options
context:
space:
mode:
authorChris Denton <chris@chrisdenton.dev>2023-05-09 19:34:01 +0100
committerChris Denton <chris@chrisdenton.dev>2023-05-09 19:34:01 +0100
commitd0766079833e70b25f081db59105888b9e986f18 (patch)
tree8ad9914753595c1f5701979ca378666042aa5c41 /library/std/src/sys/mod.rs
parent3a37c2f0523c87147b64f1b8099fc9df22e8c53e (diff)
downloadrust-d0766079833e70b25f081db59105888b9e986f18.tar.gz
rust-d0766079833e70b25f081db59105888b9e986f18.zip
Don't force include Windows goop when documenting
Diffstat (limited to 'library/std/src/sys/mod.rs')
-rw-r--r--library/std/src/sys/mod.rs25
1 files changed, 0 insertions, 25 deletions
diff --git a/library/std/src/sys/mod.rs b/library/std/src/sys/mod.rs
index e767b2866cb..c72be13804d 100644
--- a/library/std/src/sys/mod.rs
+++ b/library/std/src/sys/mod.rs
@@ -52,31 +52,6 @@ cfg_if::cfg_if! {
     }
 }
 
-// Import essential modules from platforms used in `std::os` when documenting.
-//
-// Note that on some platforms those modules don't compile
-// (missing things in `libc` which is empty), so they are not included in `std::os` and can be
-// omitted here as well.
-
-#[cfg(doc)]
-#[cfg(not(any(
-    all(target_arch = "wasm32", not(target_os = "wasi")),
-    all(target_vendor = "fortanix", target_env = "sgx")
-)))]
-cfg_if::cfg_if! {
-    if #[cfg(not(windows))] {
-        // On non-Windows platforms (aka linux/osx/etc) pull in a "minimal"
-        // amount of windows goop which ends up compiling
-
-        #[macro_use]
-        #[path = "windows/compat.rs"]
-        pub mod compat;
-
-        #[path = "windows/c.rs"]
-        pub mod c;
-    }
-}
-
 cfg_if::cfg_if! {
     // Fuchsia components default to full backtrace.
     if #[cfg(target_os = "fuchsia")] {