Skip to content

Commit 023a843

Browse files
committed
update submodule
1 parent aba238d commit 023a843

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

libm

Submodule libm updated from 0e97df2 to d65f60f

src/math.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ macro_rules! no_mangle {
1616
no_mangle! {
1717
fn acos(x: f64) -> f64;
1818
fn asin(x: f64) -> f64;
19-
// fn atan(x: f64) -> f64;
20-
// fn atan2(x: f64, y: f64) -> f64;
19+
fn atan(x: f64) -> f64;
20+
fn atan2(x: f64, y: f64) -> f64;
2121
fn cbrt(x: f64) -> f64;
22-
// fn cosh(x: f64) -> f64;
22+
fn cosh(x: f64) -> f64;
2323
fn expm1(x: f64) -> f64;
2424
fn hypot(x: f64, y: f64) -> f64;
2525
fn log1p(x: f64) -> f64;
@@ -40,7 +40,7 @@ no_mangle! {
4040
fn roundf(x: f32) -> f32;
4141
fn sin(x: f64) -> f64;
4242
fn sinf(x: f32) -> f32;
43-
// fn pow(x: f64, y: f64) -> f64;
43+
fn pow(x: f64, y: f64) -> f64;
4444
fn powf(x: f32, y: f32) -> f32;
4545
fn exp2(x: f64) -> f64;
4646
fn exp2f(x: f32) -> f32;

0 commit comments

Comments
 (0)