Sign in
rust
/
rust
/
244fc326f23b58bc9db6bd985c59b80098ff14c1
/
.
/
tests
/
run-make
/
native-link-modifier-bundle
/
bundled.rs
blob: 0bbae8752d7b3ff0da9f3235becc3656a757ffe0 [
file
]
#[
link
(
name
=
"native-staticlib"
,
kind
=
"static"
,
modifiers
=
"+bundle"
)]
extern
"C"
{
pub
fn
native_func
();
}
#[
no_mangle
]
pub
extern
"C"
fn
wrapped_func
()
{
unsafe
{
native_func
();
}
}