mirror of
https://github.com/fluencelabs/wasm-utils
synced 2025-04-03 19:51:02 +00:00
12 lines
203 B
Rust
12 lines
203 B
Rust
|
#![feature(link_args)]
|
||
|
#![no_main]
|
||
|
|
||
|
// as it is experimental preamble
|
||
|
#![allow(dead_code)]
|
||
|
|
||
|
#[link_args = "-s WASM=1 -s NO_EXIT_RUNTIME=1 -s NO_FILESYSTEM=1 -s"]
|
||
|
extern {}
|
||
|
|
||
|
#[no_mangle]
|
||
|
pub fn call() {
|
||
|
}
|