mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 11:48:30 +00:00
13 lines
236 B
Rust
13 lines
236 B
Rust
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};
|
|
}
|
|
}
|