Skip to content

Commit

Permalink
Add lgamma_r and lgammaf_r to MinGW
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Jul 31, 2023
1 parent efd227f commit d3f31b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pub mod int;
all(target_arch = "mips", target_os = "none"),
target_os = "xous",
all(target_vendor = "fortanix", target_env = "sgx"),
target_env = "msvc"
target_os = "windows"
))]
pub mod math;
pub mod mem;
Expand Down
2 changes: 1 addition & 1 deletion src/math.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ no_mangle! {
all(target_arch = "x86_64", target_os = "uefi"),
all(target_arch = "xtensa", target_os = "none"),
all(target_vendor = "fortanix", target_env = "sgx"),
target_env = "msvc"
target_os = "windows"
))]
intrinsics! {
pub extern "C" fn lgamma_r(x: f64, s: &mut i32) -> f64 {
Expand Down

0 comments on commit d3f31b2

Please sign in to comment.