mirror of
https://github.com/fluencelabs/wasmer
synced 2025-04-02 16:01:03 +00:00
7 lines
193 B
Rust
7 lines
193 B
Rust
|
use wasmer_runtime_core::vm::Ctx;
|
||
|
|
||
|
pub fn confstr(_ctx: &mut Ctx, _name: i32, _bufPointer: i32, _len: i32) -> i32 {
|
||
|
debug!("unistd::confstr({}, {}, {})", _name, _bufPointer, _len);
|
||
|
0
|
||
|
}
|