blob: 95b27fc49d28ea954b8e2ca9e64af5ad1b2275e7 [file] [log] [blame]
#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
pub fn ldexpf(x: f32, n: i32) -> f32 {
super::scalbnf(x, n)
}