File tree Expand file tree Collapse file tree 2 files changed +3
-15
lines changed Expand file tree Collapse file tree 2 files changed +3
-15
lines changed Original file line number Diff line number Diff line change 1
- Subproject commit 14a76eaf8dab437e92c5fc505c48fb4ed0eb3483
1
+ Subproject commit 4c8a973741c014b11ce7f1477693a3e5d4ef9609
Original file line number Diff line number Diff line change @@ -46,6 +46,8 @@ no_mangle! {
46
46
fn fmaxf( x: f32 , y: f32 ) -> f32 ;
47
47
fn round( x: f64 ) -> f64 ;
48
48
fn roundf( x: f32 ) -> f32 ;
49
+ fn rint( x: f64 ) -> f64 ;
50
+ fn rintf( x: f32 ) -> f32 ;
49
51
fn sin( x: f64 ) -> f64 ;
50
52
fn pow( x: f64 , y: f64 ) -> f64 ;
51
53
fn powf( x: f32 , y: f32 ) -> f32 ;
@@ -65,20 +67,6 @@ no_mangle! {
65
67
fn ldexpf( f: f32 , n: i32 ) -> f32 ;
66
68
fn tgamma( x: f64 ) -> f64 ;
67
69
fn tgammaf( x: f32 ) -> f32 ;
68
- }
69
-
70
- #[ cfg( any(
71
- all(
72
- target_family = "wasm" ,
73
- target_os = "unknown" ,
74
- not( target_env = "wasi" )
75
- ) ,
76
- target_os = "xous" ,
77
- all( target_arch = "x86_64" , target_os = "uefi" ) ,
78
- all( target_arch = "xtensa" , target_os = "none" ) ,
79
- all( target_vendor = "fortanix" , target_env = "sgx" )
80
- ) ) ]
81
- no_mangle ! {
82
70
fn atan( x: f64 ) -> f64 ;
83
71
fn atan2( x: f64 , y: f64 ) -> f64 ;
84
72
fn cosh( x: f64 ) -> f64 ;
You can’t perform that action at this time.
0 commit comments