mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
7 lines
195 B
Rust
7 lines
195 B
Rust
use wasmer_runtime_core::vm::Ctx;
|
|
|
|
pub fn confstr(_ctx: &mut Ctx, _name: i32, _buf_pointer: i32, _len: i32) -> i32 {
|
|
debug!("unistd::confstr({}, {}, {})", _name, _buf_pointer, _len);
|
|
0
|
|
}
|