Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
library
/
std
/
src
/
sys
/
os_str
/
mod.rs
blob: 345e661586d03f423cc5e8699ce990526a826297 [
file
] [
log
] [
blame
]
#![
forbid
(
unsafe_op_in_unsafe_fn
)]
cfg_if
::
cfg_if
!
{
if
#[
cfg
(
any
(
target_os
=
"windows"
,
target_os
=
"uefi"
,
))]
{
mod
wtf8
;
pub
use
wtf8
::{
Buf
,
Slice
};
}
else
{
mod
bytes
;
pub
use
bytes
::{
Buf
,
Slice
};
}
}