rmath 0.1.5

A rust math library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(target_pointer_width = "32")]
mod inner {
    use std::os::raw::c_long;
    
    const __X32_SYSCALL_BIT: c_long = 0x40000000;
    pub const SYS_getrandom: c_long = __X32_SYSCALL_BIT + 318;
}

#[cfg(target_pointer_width = "64")]
mod inner {
    use std::os::raw::c_long;


    pub const SYS_getrandom: c_long = 318;
}

pub use inner::*;