libm/math/
remainderf.rs

1#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
2pub fn remainderf(x: f32, y: f32) -> f32 {
3    let (result, _) = super::remquof(x, y);
4    result
5}