mirror of
https://github.com/fluencelabs/wasm-utils
synced 2025-03-31 02:11:03 +00:00
8 lines
124 B
Rust
8 lines
124 B
Rust
extern {
|
|
#[link(name="env")]
|
|
fn log_event(id: *const u8);
|
|
}
|
|
|
|
fn main() {
|
|
unsafe { log_event(::std::ptr::null()); }
|
|
} |