We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent badd513 commit 7298535Copy full SHA for 7298535
src/libstd/sys/windows/f32.rs
@@ -16,10 +16,10 @@ pub mod cmath {
16
use libc::{c_float, c_int};
17
18
extern {
19
- #[cfg_attr(target_env = "msvc", link_name = "__lgamma_r")]
+ #[cfg_attr(target_env = "msvc", link_name = "__lgammaf_r")]
20
pub fn lgammaf_r(n: c_float, sign: &mut c_int) -> c_float;
21
22
- #[cfg_attr(target_env = "msvc", link_name = "_hypot")]
+ #[cfg_attr(target_env = "msvc", link_name = "_hypotf")]
23
pub fn hypotf(x: c_float, y: c_float) -> c_float;
24
}
25
0 commit comments