libm/src/math/tgammaf.rs
Igor null a4e0202602 Ported several remaining math functions from musl
Please note that these aren't tested yet.
2018-08-26 16:36:59 +03:00

6 lines
89 B
Rust

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