We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 939cbca commit 14685d2Copy full SHA for 14685d2
src/math.rs
@@ -51,6 +51,19 @@ no_mangle! {
51
fn fmodf(x: f32, y: f32) -> f32;
52
fn fma(x: f64, y: f64, z: f64) -> f64;
53
fn fmaf(x: f32, y: f32, z: f32) -> f32;
54
+ fn acosf(n: f32) -> f32;
55
+ fn asinf(n: f32) -> f32;
56
+ fn atan2f(a: f32, b: f32) -> f32;
57
+ fn atanf(n: f32) -> f32;
58
+ fn cbrtf(n: f32) -> f32;
59
+ fn coshf(n: f32) -> f32;
60
+ fn expm1f(n: f32) -> f32;
61
+ fn fdimf(a: f32, b: f32) -> f32;
62
+ fn hypotf(x: f32, y: f32) -> f32;
63
+ fn log1pf(n: f32) -> f32;
64
+ fn sinhf(n: f32) -> f32;
65
+ fn tanf(n: f32) -> f32;
66
+ fn tanhf(n: f32) -> f32;
67
}
68
69
// only for the thumb*-none-eabi* targets
0 commit comments