about summary refs log tree commit diff
path: root/src/libstd/sys_common
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/sys_common')
-rw-r--r--src/libstd/sys_common/mod.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libstd/sys_common/mod.rs b/src/libstd/sys_common/mod.rs
index ee71e62e4ca..27504d374dd 100644
--- a/src/libstd/sys_common/mod.rs
+++ b/src/libstd/sys_common/mod.rs
@@ -43,16 +43,13 @@ pub mod thread_local;
 pub mod util;
 pub mod wtf8;
 pub mod bytestring;
-#[cfg(not(target_os = "cloudabi"))]
 pub mod process;
 
 cfg_if! {
-    if #[cfg(any(target_os = "redox", target_os = "l4re"))] {
+    if #[cfg(any(target_os = "cloudabi", target_os = "l4re", target_os = "redox"))] {
         pub use sys::net;
     } else if #[cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))] {
         pub use sys::net;
-    } else if #[cfg(target_os = "cloudabi")] {
-        // No networking support on CloudABI (yet).
     } else {
         pub mod net;
     }