6 lines
89 B
Rust
6 lines
89 B
Rust
use super::{tgamma};
|
|
|
|
pub fn tgammaf(x: f32) -> f32 {
|
|
tgamma(x as f64) as f32
|
|
}
|