Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
run-make
/
link-native-static-lib-to-dylib
/
foo.rs
blob: b4eaa0b31c5be9bc67602cfeb1e60c2e09f4e71d [
file
] [
log
] [
blame
] [
edit
]
#![
crate_type
=
"dylib"
]
#[
link
(
name
=
"foo"
,
kind
=
"static"
)]
extern
"C"
{
pub
fn
foo
();
}