]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-2214.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / issue-2214.rs
1
2 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
3 // file at the top-level directory of this distribution and at
4 // http://rust-lang.org/COPYRIGHT.
5 //
6 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
7 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
8 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
9 // option. This file may not be copied, modified, or distributed
10 // except according to those terms.
11
12 extern crate libc;
13
14 use std::mem;
15 use libc::{c_double, c_int};
16
17 fn to_c_int(v: &mut int) -> &mut c_int {
18     unsafe {
19         mem::transmute_copy(&v)
20     }
21 }
22
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 libc::{c_double, c_int};
31
32     #[link_name = "m"]
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 }