Skip to content

Commit

Permalink
Added lgamma_r and lgammaf_r
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Mar 4, 2023
1 parent 39ad246 commit ffc242a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/math.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ no_mangle! {
fn ldexpf(f: f32, n: i32) -> f32;
fn tgamma(x: f64) -> f64;
fn tgammaf(x: f32) -> f32;
fn lgamma_r(x: f64) -> (f64, i32);
fn lgammaf_r(x: f32) -> (f32, i32);
fn atan(x: f64) -> f64;
fn atan2(x: f64, y: f64) -> f64;
fn cosh(x: f64) -> f64;
Expand Down

0 comments on commit ffc242a

Please sign in to comment.