summary refs log tree commit diff
path: root/src/test/run-pass/extern-call.rs
blob: 5fb62e7c18571df764bfaa6f6f8d66213a87c063 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
extern mod rustrt {
    #[legacy_exports];
    fn rust_dbg_call(cb: *u8,
                     data: libc::uintptr_t) -> libc::uintptr_t;
}

extern fn cb(data: libc::uintptr_t) -> libc::uintptr_t {
    if data == 1u {
        data
    } else {
        fact(data - 1u) * data
    }
}

fn fact(n: uint) -> uint {
    debug!("n = %?", n);
    rustrt::rust_dbg_call(cb, n)
}

fn main() {
    let result = fact(10u);
    debug!("result = %?", result);
    assert result == 3628800u;
}