libc 0.2.185

Raw FFI bindings to platform libraries like libc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Header: `machine/_mcontext.h`

cfg_if! {
    if #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] {
        pub use crate::i386::_mcontext::*;
    } else if #[cfg(any(target_arch = "arm", target_arch = "aarch64"))] {
        pub use crate::arm::_mcontext::*;
    } else {
        // Unsupported arch
    }
}