mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-15 15:15:40 +00:00
b78a8af228
Since Pyodide is focused on running on desktop, this pull-request lacks Javascript runtime functions. It also sorted alphabetically some functions
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
|
|
}
|