]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/issue-2214.rs
Imported Upstream version 1.3.0+dfsg1
[rustc.git] / src / test / run-pass / issue-2214.rs
CommitLineData
1a4d82fc 1// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
c34b1796
AL
11
12#![feature(libc)]
13
1a4d82fc
JJ
14extern crate libc;
15
16use std::mem;
17use libc::{c_double, c_int};
223e47cc 18
c34b1796 19fn to_c_int(v: &mut isize) -> &mut c_int {
223e47cc 20 unsafe {
1a4d82fc 21 mem::transmute_copy(&v)
223e47cc
LB
22 }
23}
24
c34b1796 25fn lgamma(n: c_double, value: &mut isize) -> c_double {
223e47cc
LB
26 unsafe {
27 return m::lgamma(n, to_c_int(value));
28 }
29}
30
31mod m {
1a4d82fc 32 use libc::{c_double, c_int};
223e47cc
LB
33
34 #[link_name = "m"]
1a4d82fc 35 extern {
223e47cc
LB
36 #[cfg(unix)]
37 #[link_name="lgamma_r"]
38 pub fn lgamma(n: c_double, sign: &mut c_int) -> c_double;
39 #[cfg(windows)]
c1a9b12d 40 #[link_name="lgamma"]
223e47cc
LB
41 pub fn lgamma(n: c_double, sign: &mut c_int) -> c_double;
42 }
43}
44
45pub fn main() {
c34b1796
AL
46 let mut y: isize = 5;
47 let x: &mut isize = &mut y;
970d7e83 48 assert_eq!(lgamma(1.0 as c_double, x), 0.0 as c_double);
223e47cc 49}