File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ macro_rules! no_mangle {
16
16
no_mangle ! {
17
17
fn acos( x: f64 ) -> f64 ;
18
18
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 ;
21
21
fn cbrt( x: f64 ) -> f64 ;
22
- // fn cosh(x: f64) -> f64;
22
+ fn cosh( x: f64 ) -> f64 ;
23
23
fn expm1( x: f64 ) -> f64 ;
24
24
fn hypot( x: f64 , y: f64 ) -> f64 ;
25
25
fn log1p( x: f64 ) -> f64 ;
@@ -40,7 +40,7 @@ no_mangle! {
40
40
fn roundf( x: f32 ) -> f32 ;
41
41
fn sin( x: f64 ) -> f64 ;
42
42
fn sinf( x: f32 ) -> f32 ;
43
- // fn pow(x: f64, y: f64) -> f64;
43
+ fn pow( x: f64 , y: f64 ) -> f64 ;
44
44
fn powf( x: f32 , y: f32 ) -> f32 ;
45
45
fn exp2( x: f64 ) -> f64 ;
46
46
fn exp2f( x: f32 ) -> f32 ;
You can’t perform that action at this time.
0 commit comments