]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-2214.rs
Add externfn macro and correctly label fixed_stack_segments
[rust.git] / src / test / run-pass / issue-2214.rs
1 // xfail-fast
2
3 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
4 // file at the top-level directory of this distribution and at
5 // http://rust-lang.org/COPYRIGHT.
6 //
7 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10 // option. This file may not be copied, modified, or distributed
11 // except according to those terms.
12
13 use std::cast;
14 use std::libc::{c_double, c_int};
15
16 fn to_c_int(v: &mut int) -> &mut c_int {
17     unsafe {
18         cast::transmute_copy(&v)
19     }
20 }
21
22 #[fixed_stack_segment] #[inline(never)]
23 fn lgamma(n: c_double, value: &mut int) -> c_double {
24     unsafe {
25         return m::lgamma(n, to_c_int(value));
26     }
27 }
28
29 mod m {
30     use std::libc::{c_double, c_int};
31
32     #[link_name = "m"]
33     #[abi = "cdecl"]
34     extern {
35         #[cfg(unix)]
36         #[link_name="lgamma_r"]
37         pub fn lgamma(n: c_double, sign: &mut c_int) -> c_double;
38         #[cfg(windows)]
39         #[link_name="__lgamma_r"]
40         pub fn lgamma(n: c_double, sign: &mut c_int) -> c_double;
41     }
42 }
43
44 pub fn main() {
45   let mut y: int = 5;
46   let x: &mut int = &mut y;
47   assert_eq!(lgamma(1.0 as c_double, x), 0.0 as c_double);
48 }