Skip to content

Commit

Permalink
Merge pull request #298 from varkor/update-libm
Browse files Browse the repository at this point in the history
Update libm for fmin/fmax/fminf/fmaxf
  • Loading branch information
alexcrichton authored Jun 5, 2019
2 parents 5d5a85e + bf3a9e9 commit 9eafb67
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion libm
Submodule libm updated from 0ae442 to 01bee7
4 changes: 4 additions & 0 deletions src/math.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ no_mangle! {
fn log10f(x: f32) -> f32;
fn log(x: f64) -> f64;
fn logf(x: f32) -> f32;
fn fmin(x: f64, y: f64) -> f64;
fn fminf(x: f32, y: f32) -> f32;
fn fmax(x: f64, y: f64) -> f64;
fn fmaxf(x: f32, y: f32) -> f32;
fn round(x: f64) -> f64;
fn roundf(x: f32) -> f32;
fn sin(x: f64) -> f64;
Expand Down

0 comments on commit 9eafb67

Please sign in to comment.