]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/sys_common/mod.rs
Unify OsString/OsStr for byte-based implementations
[rust.git] / src / libstd / sys_common / mod.rs
index 1fc32365408b86659a2ae3583c41625e30b3a4a9..883ab34f07c5832513d5a5c5753baac903ee0247 100644 (file)
@@ -35,6 +35,13 @@ macro_rules! rtassert {
 pub mod condvar;
 pub mod io;
 pub mod mutex;
+#[cfg(any(rustdoc, // see `mod os`, docs are generated for multiple platforms
+          unix,
+          target_os = "redox",
+          target_os = "cloudabi",
+          target_arch = "wasm32",
+          all(target_vendor = "fortanix", target_env = "sgx")))]
+pub mod os_str_bytes;
 pub mod poison;
 pub mod remutex;
 pub mod rwlock;