mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-01 21:45:15 +00:00
10 lines
160 B
Rust
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
|
|
}
|