1use super::tgamma; 2 3#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)] 4pub fn tgammaf(x: f32) -> f32 { 5 tgamma(x as f64) as f32 6}