Skip to content

Commit 6f8b7c9

Browse files
committed
Added tgamma and tgammaf
1 parent 3872a7c commit 6f8b7c9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/math.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ no_mangle! {
6363
fn tanhf(n: f32) -> f32;
6464
fn ldexp(f: f64, n: i32) -> f64;
6565
fn ldexpf(f: f32, n: i32) -> f32;
66+
fn tgamma(x: f64) -> f64;
67+
fn tgammaf(x: f32) -> f32;
6668
}
6769

6870
#[cfg(any(

0 commit comments

Comments
 (0)