Skip to content

Commit

Permalink
update submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
japaric committed Jul 18, 2018
1 parent aba238d commit 023a843
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libm
Submodule libm updated from 0e97df to d65f60
8 changes: 4 additions & 4 deletions src/math.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ macro_rules! no_mangle {
no_mangle! {
fn acos(x: f64) -> f64;
fn asin(x: f64) -> f64;
// fn atan(x: f64) -> f64;
// fn atan2(x: f64, y: f64) -> f64;
fn atan(x: f64) -> f64;
fn atan2(x: f64, y: f64) -> f64;
fn cbrt(x: f64) -> f64;
// fn cosh(x: f64) -> f64;
fn cosh(x: f64) -> f64;
fn expm1(x: f64) -> f64;
fn hypot(x: f64, y: f64) -> f64;
fn log1p(x: f64) -> f64;
Expand All @@ -40,7 +40,7 @@ no_mangle! {
fn roundf(x: f32) -> f32;
fn sin(x: f64) -> f64;
fn sinf(x: f32) -> f32;
// fn pow(x: f64, y: f64) -> f64;
fn pow(x: f64, y: f64) -> f64;
fn powf(x: f32, y: f32) -> f32;
fn exp2(x: f64) -> f64;
fn exp2f(x: f32) -> f32;
Expand Down

0 comments on commit 023a843

Please sign in to comment.