mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-26 13:58:21 +00:00
8 lines
115 B
Rust
8 lines
115 B
Rust
#![crate_type = "rlib"]
|
|
#![deny(warnings)]
|
|
|
|
#[link(wasm_import_module = "./dep")]
|
|
extern "C" {
|
|
pub fn dep();
|
|
}
|