wasmer-emscripten 4.4.0

Emscripten implementation library for Wasmer WebAssembly runtime
Documentation
1
2
3
4
5
6
7
use crate::EmEnv;
use wasmer::FunctionEnvMut;

pub fn confstr(mut _ctx: FunctionEnvMut<EmEnv>, _name: i32, _buf_pointer: i32, _len: i32) -> i32 {
    debug!("unistd::confstr({}, {}, {})", _name, _buf_pointer, _len);
    0
}