1cfg_if::cfg_if! {
2 if #[cfg(any(
3 target_os = "windows",
4 target_os = "uefi",
5 ))] {
6 mod wtf8;
7 pub use wtf8::{Buf, Slice};
8 } else {
9 mod bytes;
10 pub use bytes::{Buf, Slice};
11 }
12}
13