1use super::lgammaf_r; 2 3#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)] 4pub fn lgammaf(x: f32) -> f32 { 5 lgammaf_r(x).0 6}