Expose erf{,c}{,f} from libm
This commit is contained in:
parent
9cba04b3e5
commit
7f3bd59cdf
1 changed files with 5 additions and 0 deletions
|
|
@ -91,6 +91,11 @@ no_mangle! {
|
|||
fn fmod(x: f64, y: f64) -> f64;
|
||||
// `f32 % f32`
|
||||
fn fmodf(x: f32, y: f32) -> f32;
|
||||
|
||||
fn erf(x: f64) -> f64;
|
||||
fn erff(x: f32) -> f32;
|
||||
fn erfc(x: f64) -> f64;
|
||||
fn erfcf(x: f32) -> f32;
|
||||
}
|
||||
|
||||
// allow for windows (and other targets)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue