1#![no_std] 2 3#[cfg(any(target_os = "android", target_os = "linux"))] 4pub use linux::*; 5 6#[cfg(any(target_os = "android", target_os = "linux"))] 7mod linux;