File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
branches/snap-stage3/src/test/run-pass Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 2898dcc5d97da9427ac367542382b6239d9c0bbf
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: cc323d8637c36a8762bebaedad98cc916f4fcc1f
4
+ refs/heads/snap-stage3: be8a08b2afac770c0b932619419bd08cd0550d85
5
5
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
Original file line number Diff line number Diff line change @@ -8,8 +8,13 @@ fn lgamma(n: c_double, value: &mut int) -> c_double {
8
8
#[ link_name = "m" ]
9
9
#[ abi = "cdecl" ]
10
10
native mod m {
11
+ #[ cfg( unix) ]
11
12
#[ link_name="lgamma_r" ] fn lgamma ( n : c_double , sign : & mut c_int )
12
13
-> c_double ;
14
+ #[ cfg( windows) ]
15
+ #[ link_name="__lgamma_r" ] fn lgamma ( n : c_double ,
16
+ sign : & mut c_int ) -> c_double ;
17
+
13
18
}
14
19
15
20
fn main ( ) {
You can’t perform that action at this time.
0 commit comments