16 lines
389 B
Rust
Raw Normal View History

2018-11-13 19:19:23 -08:00
use libc::printf as _printf;
use wasmer_runtime_core::Instance;
2018-11-13 19:19:23 -08:00
2018-11-20 20:11:58 +01:00
/// putchar
pub use libc::putchar;
/// printf
2018-11-13 19:19:23 -08:00
pub extern "C" fn printf(memory_offset: i32, extra: i32, instance: &Instance) -> i32 {
debug!("emscripten::printf {}, {}", memory_offset, extra);
unsafe {
let addr = instance.memory_offset_addr(0, memory_offset as _) as _;
_printf(addr, extra)
}
2018-11-13 19:19:23 -08:00
}