summaryrefslogtreecommitdiffstats
path: root/vendor/compiler_builtins/libm/src/math/remainder.rs
blob: 9e966c9ed7f4afd12f645e8df40742eb3892588e (plain)
1
2
3
4
5
#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
pub fn remainder(x: f64, y: f64) -> f64 {
    let (result, _) = super::remquo(x, y);
    result
}