Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
run-make
/
cdylib
/
foo.rs
blob: c4069495aaff1670d9084e004844024f095c56b4 [
file
]
#![
crate_type
=
"cdylib"
]
extern
crate bar
;
#[
no_mangle
]
pub
extern
"C"
fn
foo
()
{
bar
::
bar
();
}
#[
no_mangle
]
pub
extern
"C"
fn
bar
(
a
:
u32
,
b
:
u32
)
->
u32
{
a
+
b
}