about summary refs log tree commit diff
path: root/library/compiler-builtins/libm/src/math/remainder.rs
blob: 54152df32f151b13f72c15607553a6df59033b65 (plain)
1
2
3
4
5
#[cfg_attr(assert_no_panic, no_panic::no_panic)]
pub fn remainder(x: f64, y: f64) -> f64 {
    let (result, _) = super::remquo(x, y);
    result
}