Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
wasm
/
auxiliary
/
link-name-in-foreign-crate.rs
blob: 69d508518597ea919819da3ad8c2cf840e58b09a [
file
] [
log
] [
blame
] [
edit
]
#![
no_std
]
#[
link
(
wasm_import_module
=
"test"
)]
unsafe
extern
"C"
{
#[
link_name
=
"close"
]
pub
fn
close
(
x
:
u32
)
->
u32
;
}