libwasm/src/syscalls.rs

5 lines
93 B
Rust

/// All system calls are defined here.
extern "C" {
pub fn add(a: u32, b: u32) -> u32;
}