This adds the C WASI implementation as a new crate, wasmtime-wasi-c, and adds a command-line flag to the wasmtime command-line driver to select which WASI implementation to use.
7 lines
181 B
Rust
7 lines
181 B
Rust
#![allow(non_camel_case_types, dead_code)]
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/wasmtime_ssp.rs"));
|
|
|
|
pub type char = ::std::os::raw::c_char;
|
|
pub type void = ::std::os::raw::c_void;
|