summaryrefslogtreecommitdiffstats
path: root/vendor/compiler_builtins/libm/src/math/ldexpf.rs
blob: 95b27fc49d28ea954b8e2ca9e64af5ad1b2275e7 (plain)
1
2
3
4
#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
pub fn ldexpf(x: f32, n: i32) -> f32 {
    super::scalbnf(x, n)
}