10 lines
160 B
Rust

//! Other operating systems
use arch::detect::Feature;
/// Performs run-time feature detection.
#[inline]
pub fn check_for(_x: Feature) -> bool {
false
}