Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
run-make-fulldeps
/
lto-no-link-whole-rlib
/
lib1.rs
blob: f70bb338223e0b96b4d1c086b4f89e75e5468172 [
file
] [
log
] [
blame
]
#![
crate_type
=
"rlib"
]
#[
link
(
name
=
"foo"
,
kind
=
"static"
)]
extern
"C"
{
fn
foo
()
->
i32
;
}
pub
fn
foo1
()
->
i32
{
unsafe
{
foo
()
}
}