about summary refs log tree commit diff
path: root/library/std/src/sys/pal/unix/mod.rs
diff options
context:
space:
mode:
authorjoboet <jonasboettiger@icloud.com>2025-01-18 19:10:36 +0100
committerjoboet <jonasboettiger@icloud.com>2025-02-07 16:54:07 +0100
commita9df224ac7d935b83b8e5707fdeb92907b172f19 (patch)
tree2b7d76e876fca9e3b2bbe99ad08491759c956c67 /library/std/src/sys/pal/unix/mod.rs
parent5ff18d0eaefd1bd9ab8ec33dab2404a44e7631ed (diff)
downloadrust-a9df224ac7d935b83b8e5707fdeb92907b172f19.tar.gz
rust-a9df224ac7d935b83b8e5707fdeb92907b172f19.zip
std: move `io` module out of `pal`
Diffstat (limited to 'library/std/src/sys/pal/unix/mod.rs')
-rw-r--r--library/std/src/sys/pal/unix/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/library/std/src/sys/pal/unix/mod.rs b/library/std/src/sys/pal/unix/mod.rs
index 6862399b942..027df6c5691 100644
--- a/library/std/src/sys/pal/unix/mod.rs
+++ b/library/std/src/sys/pal/unix/mod.rs
@@ -11,7 +11,6 @@ pub mod env;
 pub mod fd;
 pub mod fs;
 pub mod futex;
-pub mod io;
 #[cfg(any(target_os = "linux", target_os = "android"))]
 pub mod kernel_copy;
 #[cfg(target_os = "linux")]