mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-15 07:05:41 +00:00
7 lines
125 B
Rust
7 lines
125 B
Rust
|
use wasmer_runtime_core::vm::Ctx;
|
||
|
|
||
|
pub fn addr(_ctx: &mut Ctx, _cp: i32) -> i32 {
|
||
|
debug!("inet::addr({})", _cp);
|
||
|
0
|
||
|
}
|