aboutsummaryrefslogtreecommitdiff
path: root/src/math/tgammaf.rs
blob: a8f161f0c1c951f7412dd88c1423cea55766d1da (plain)
1
2
3
4
5
use super::tgamma;

pub fn tgammaf(x: f32) -> f32 {
    tgamma(x as f64) as f32
}