1
0
mirror of https://github.com/fluencelabs/wasm-utils synced 2025-03-31 18:31:03 +00:00
wasm-utils/samples/static_contract.rs

8 lines
124 B
Rust
Raw Normal View History

2017-05-04 19:49:40 +03:00
extern {
#[link(name="env")]
fn log_event(id: *const u8);
2017-05-04 14:12:39 +03:00
}
2017-05-04 19:49:40 +03:00
fn main() {
unsafe { log_event(::std::ptr::null()); }
}