blob: a8f161f0c1c951f7412dd88c1423cea55766d1da [file] [log] [blame] [edit]
use super::tgamma;
pub fn tgammaf(x: f32) -> f32 {
tgamma(x as f64) as f32
}