1#![forbid(unsafe_op_in_unsafe_fn)] 2 3cfg_select! { 4 any(target_os = "windows", target_os = "uefi") => { 5 mod wtf8; 6 pub use wtf8::{Buf, Slice}; 7 } 8 _ => { 9 mod bytes; 10 pub use bytes::{Buf, Slice}; 11 } 12}