]> git.proxmox.com Git - rustc.git/blob - vendor/compiler_builtins/libm/src/math/remainder.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / vendor / compiler_builtins / libm / src / math / remainder.rs
1 #[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
2 pub fn remainder(x: f64, y: f64) -> f64 {
3 let (result, _) = super::remquo(x, y);
4 result
5 }