diff options
| author | Jethro Beekman <jethro@fortanix.com> | 2019-03-05 15:05:44 -0800 |
|---|---|---|
| committer | Jethro Beekman <jethro@fortanix.com> | 2019-03-21 13:45:35 -0700 |
| commit | 2079df1c8740dd76d5c28bb8f6193826f6afdec4 (patch) | |
| tree | d94ea7662096b391c9f168e5fea3f434b6c702c9 /src/libstd/sys/cloudabi | |
| parent | f22dca0a1bef4141e75326caacc3cd59f3d5be8e (diff) | |
| download | rust-2079df1c8740dd76d5c28bb8f6193826f6afdec4.tar.gz rust-2079df1c8740dd76d5c28bb8f6193826f6afdec4.zip | |
Unify OsString/OsStr for byte-based implementations
Diffstat (limited to 'src/libstd/sys/cloudabi')
| -rw-r--r-- | src/libstd/sys/cloudabi/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/sys/cloudabi/mod.rs b/src/libstd/sys/cloudabi/mod.rs index 47c90fddd86..3f8e67a7af8 100644 --- a/src/libstd/sys/cloudabi/mod.rs +++ b/src/libstd/sys/cloudabi/mod.rs @@ -14,8 +14,6 @@ pub mod io; pub mod memchr; pub mod mutex; pub mod os; -#[path = "../unix/os_str.rs"] -pub mod os_str; pub mod rwlock; pub mod stack_overflow; pub mod stdio; @@ -24,6 +22,8 @@ pub mod thread; pub mod thread_local; pub mod time; +pub use crate::sys_common::os_str_bytes as os_str; + mod abi; mod shims; |
