2012-12-13 13:05:22 -08:00
|
|
|
// xfail-fast
|
|
|
|
|
2012-12-10 17:32:48 -08:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-01-07 22:13:34 -08:00
|
|
|
use core::cast;
|
|
|
|
use core::libc::{c_double, c_int};
|
|
|
|
use core::f64::*;
|
2012-06-21 16:50:45 -07:00
|
|
|
|
2013-01-23 11:43:58 -08:00
|
|
|
fn to_c_int(v: &mut int) -> &mut c_int {
|
|
|
|
unsafe {
|
|
|
|
cast::reinterpret_cast(&v)
|
|
|
|
}
|
2012-08-02 14:23:04 -07:00
|
|
|
}
|
|
|
|
|
2012-06-21 16:50:45 -07:00
|
|
|
fn lgamma(n: c_double, value: &mut int) -> c_double {
|
2013-01-23 16:29:31 -08:00
|
|
|
unsafe {
|
|
|
|
return m::lgamma(n, to_c_int(value));
|
|
|
|
}
|
2012-06-21 16:50:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#[link_name = "m"]
|
|
|
|
#[abi = "cdecl"]
|
2012-07-03 16:11:00 -07:00
|
|
|
extern mod m {
|
2012-06-21 17:54:56 -07:00
|
|
|
#[cfg(unix)]
|
2012-12-28 17:17:05 -08:00
|
|
|
#[link_name="lgamma_r"] pub fn lgamma(n: c_double, sign: &mut c_int)
|
2012-06-21 16:50:45 -07:00
|
|
|
-> c_double;
|
2012-06-21 17:54:56 -07:00
|
|
|
#[cfg(windows)]
|
2012-12-28 17:17:05 -08:00
|
|
|
#[link_name="__lgamma_r"] pub fn lgamma(n: c_double,
|
|
|
|
sign: &mut c_int) -> c_double;
|
2012-06-21 17:54:56 -07:00
|
|
|
|
2012-06-21 16:50:45 -07:00
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2012-06-21 16:50:45 -07:00
|
|
|
let mut y: int = 5;
|
|
|
|
let x: &mut int = &mut y;
|
|
|
|
assert (lgamma(1.0 as c_double, x) == 0.0 as c_double);
|
2012-12-13 13:05:22 -08:00
|
|
|
}
|