]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-2214.rs
5ca7a589c6c49fbf823afe6ed4a3cee4adbae65a
[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 fn lgamma(n: c_double, value: &mut int) -> c_double {
23     unsafe {
24         return m::lgamma(n, to_c_int(value));
25     }
26 }
27
28 mod m {
29     use std::libc::{c_double, c_int};
30
31     #[link_name = "m"]
32     #[abi = "cdecl"]
33     extern {
34         #[cfg(unix)]
35         #[link_name="lgamma_r"]
36         pub fn lgamma(n: c_double, sign: &mut c_int) -> c_double;
37         #[cfg(windows)]
38         #[link_name="__lgamma_r"]
39         pub fn lgamma(n: c_double, sign: &mut c_int) -> c_double;
40     }
41 }
42
43 pub fn main() {
44   let mut y: int = 5;
45   let x: &mut int = &mut y;
46   assert_eq!(lgamma(1.0 as c_double, x), 0.0 as c_double);
47 }