Skip to content

Commit ffc242a

Browse files
committed
Added lgamma_r and lgammaf_r
1 parent 39ad246 commit ffc242a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/math.rs

+2
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ no_mangle! {
6767
fn ldexpf(f: f32, n: i32) -> f32;
6868
fn tgamma(x: f64) -> f64;
6969
fn tgammaf(x: f32) -> f32;
70+
fn lgamma_r(x: f64) -> (f64, i32);
71+
fn lgammaf_r(x: f32) -> (f32, i32);
7072
fn atan(x: f64) -> f64;
7173
fn atan2(x: f64, y: f64) -> f64;
7274
fn cosh(x: f64) -> f64;

0 commit comments

Comments
 (0)