summary refs log tree commit diff
path: root/src/test/run-make-fulldeps/cdylib/foo.rs
blob: c2cc3afcc13222b756c0bb07b40b5e3e98f79f19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![crate_type = "cdylib"]

extern crate bar;

#[no_mangle]
pub extern fn foo() {
    bar::bar();
}

#[no_mangle]
pub extern fn bar(a: u32, b: u32) -> u32 {
    a + b
}